* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie,
.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background-color: #2d7a3e;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #245f31;
}

.btn-cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-cookie {
    background-color: #2d7a3e;
    color: #fff;
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 1px solid #fff;
}

.nav-asymmetric {
    background-color: #fff;
    padding: 20px 40px;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-disclosure {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d7a3e;
}

.hero-offset {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 80px;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-image-right {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #2d7a3e;
    transform: translateY(-2px);
}

.intro-narrative {
    background-color: #f9f9f9;
    padding: 80px 40px;
}

.narrative-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.narrative-block p {
    font-size: 24px;
    line-height: 1.7;
    color: #333;
    font-weight: 300;
}

.services-grid {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.section-header-offset {
    margin-bottom: 60px;
    margin-left: 80px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 40px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.card-large {
    flex-direction: row;
}

.service-card.card-small {
    flex-direction: row-reverse;
    margin-left: auto;
    max-width: 900px;
}

.service-card.card-medium {
    flex-direction: row;
    max-width: 1000px;
}

.service-card.card-medium:nth-of-type(even) {
    margin-left: auto;
}

.service-image {
    flex: 1;
    background-color: #e5e5e5;
    min-height: 300px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2d7a3e;
    margin-bottom: 20px;
}

.btn-service {
    padding: 14px 30px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #2d7a3e;
}

.form-section {
    background-color: #1a1a1a;
    padding: 100px 40px;
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.form-header p {
    font-size: 18px;
    color: #ccc;
}

.project-form {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2d7a3e;
}

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d7a3e;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #245f31;
}

.trust-section {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.trust-item {
    flex: 1;
    max-width: 350px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

.footer-section p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 13px;
    margin-bottom: 10px;
}

.disclaimer {
    margin-top: 20px;
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}

.page-hero {
    background-color: #1a1a1a;
    padding: 80px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    color: #ccc;
}

.about-story {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.story-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.values-section {
    background-color: #f9f9f9;
    padding: 100px 40px;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.team-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.team-intro {
    text-align: center;
    margin-bottom: 50px;
}

.team-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-intro p {
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-image {
    margin-bottom: 50px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.team-text {
    max-width: 900px;
    margin: 0 auto;
}

.team-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-about {
    background-color: #2d7a3e;
    padding: 80px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    color: #fff;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 16px 50px;
    background-color: #fff;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.services-detail {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 16px;
    color: #333;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 25px;
}

.price-label {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-size: 36px;
    color: #2d7a3e;
    font-weight: 700;
}

.workflow-section {
    background-color: #f9f9f9;
    padding: 100px 40px;
}

.workflow-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.workflow-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
}

.workflow-step {
    flex: 1;
    text-align: center;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2d7a3e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.workflow-step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.workflow-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-section {
    background-color: #f9f9f9;
    padding: 80px 40px;
}

.location-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.location-section > p {
    text-align: center;
    font-size: 17px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.location-tips {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.tip-item {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
}

.tip-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.tip-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

.thanks-hero {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-confirmation {
    background-color: #f0f9f3;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-detail {
    font-size: 16px;
    color: #2d7a3e;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #2d7a3e;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #245f31;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #1a1a1a;
    color: #fff;
}

.thanks-visual {
    flex: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.next-steps {
    background-color: #f9f9f9;
    padding: 80px 40px;
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.steps-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.step-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #2d7a3e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.step-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #2d7a3e;
    text-decoration: underline;
}

.legal-content strong {
    font-weight: 700;
    color: #1a1a1a;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-offset {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content-left h1 {
        font-size: 40px;
    }

    .service-card {
        flex-direction: column !important;
    }

    .about-story {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column !important;
    }

    .workflow-steps {
        flex-direction: column;
    }

    .contact-section {
        flex-direction: column;
    }

    .thanks-hero {
        flex-direction: column;
    }

    .steps-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .location-tips {
        flex-direction: column;
    }

    .trust-grid {
        flex-direction: column;
    }
}