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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e20;
    background: #fafaf8;
}

.ad-disclosure {
    background: #f4f1ea;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6b7565;
    border-bottom: 1px solid #e0ddd5;
}

.asymmetric-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px 25px 40px;
    background: #ffffff;
    position: relative;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c5530;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

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

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 75vh;
    padding: 80px 40px 80px 80px;
    gap: 60px;
    background: linear-gradient(135deg, #f8faf7 0%, #ffffff 100%);
}

.hero-content-left {
    flex: 1;
    max-width: 520px;
    padding-right: 40px;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a3a1f;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #4a5d42;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #3d6b42;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.hero-image-right {
    flex: 1;
    position: relative;
    margin-top: -60px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e8ede6;
}

.offset-intro {
    display: flex;
    padding: 100px 40px 100px 120px;
    gap: 80px;
    background: #ffffff;
}

.intro-block-small {
    flex: 0 0 280px;
}

.intro-block-small h2 {
    font-size: 32px;
    line-height: 1.3;
    color: #1a3a1f;
    font-weight: 700;
}

.intro-text-wide {
    flex: 1;
    max-width: 680px;
}

.intro-text-wide p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #4a5d42;
}

.services-asymmetric {
    padding: 120px 60px;
    background: #f4f7f3;
}

.service-card {
    display: flex;
    margin-bottom: 60px;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 320px;
    height: 240px;
    object-fit: cover;
    background-color: #e8ede6;
}

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

.service-info h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #1a3a1f;
    font-weight: 600;
}

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

.price {
    font-size: 22px;
    font-weight: 700;
    color: #3d6b42;
    margin-bottom: 18px;
    display: block;
}

.select-service {
    padding: 12px 28px;
    background: #3d6b42;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.select-service:hover {
    background: #2c5530;
    transform: translateX(4px);
}

.offset-1 {
    margin-left: 0;
}

.offset-2 {
    margin-left: 100px;
}

.offset-3 {
    margin-left: 50px;
}

.offset-4 {
    margin-left: 140px;
}

.offset-5 {
    margin-left: 80px;
}

.form-section-asymmetric {
    padding: 100px 80px 100px 160px;
    background: #ffffff;
}

.form-intro-offset {
    margin-bottom: 50px;
    max-width: 560px;
}

.form-intro-offset h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a3a1f;
    font-weight: 700;
}

.form-intro-offset p {
    font-size: 17px;
    color: #5a6d52;
}

.offset-form {
    max-width: 600px;
    margin-left: 60px;
}

.form-field {
    margin-bottom: 28px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e20;
    font-size: 15px;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #3d6b42;
    background: #ffffff;
}

.submit-btn {
    padding: 16px 40px;
    background: #3d6b42;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background: #2c5530;
    transform: translateY(-2px);
}

.trust-block-offset {
    display: flex;
    align-items: center;
    padding: 80px 100px 80px 60px;
    gap: 70px;
    background: #f8faf7;
}

.trust-content {
    flex: 1;
    max-width: 480px;
}

.trust-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a3a1f;
    font-weight: 700;
}

.trust-content p {
    font-size: 17px;
    color: #4a5d42;
    line-height: 1.7;
}

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    background-color: #e8ede6;
}

.asymmetric-footer {
    display: flex;
    padding: 70px 60px 70px 80px;
    gap: 60px;
    background: #2c3e20;
    color: #d4dcd0;
}

.footer-col-1 {
    flex: 0 0 240px;
}

.footer-col-1 h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-col-1 p {
    font-size: 14px;
    color: #a8b5a0;
}

.footer-col-2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 0 0 200px;
}

.footer-col-2 a {
    color: #d4dcd0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col-2 a:hover {
    color: #ffffff;
}

.footer-col-3 {
    flex: 1;
    font-size: 12px;
    line-height: 1.6;
    color: #a8b5a0;
    max-width: 500px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e20;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cookie-accept {
    background: #3d6b42;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #2c5530;
    transform: translateY(-2px);
}

.cookie-reject {
    background: #6b7565;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #5a6354;
    transform: translateY(-2px);
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a3a1f;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5d42;
}

.thanks-service {
    font-size: 20px;
    font-weight: 600;
    color: #3d6b42;
    margin: 28px 0;
}

.about-hero {
    padding: 100px 80px;
    background: linear-gradient(135deg, #f8faf7 0%, #ffffff 100%);
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a3a1f;
    max-width: 700px;
}

.about-hero p {
    font-size: 19px;
    color: #4a5d42;
    max-width: 680px;
    line-height: 1.7;
}

.about-content {
    padding: 80px 100px;
    background: #ffffff;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a3a1f;
}

.about-section p {
    font-size: 17px;
    color: #4a5d42;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 16px;
}

.services-page {
    padding: 100px 80px;
    background: #f4f7f3;
}

.services-page h1 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a3a1f;
}

.contact-page {
    padding: 100px 80px;
    background: #ffffff;
}

.contact-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a3a1f;
}

.contact-info {
    margin-bottom: 60px;
}

.contact-info p {
    font-size: 17px;
    color: #4a5d42;
    margin-bottom: 12px;
}

.contact-info strong {
    color: #2c3e20;
}

.legal-page {
    padding: 80px 100px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a3a1f;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e20;
}

.legal-page p,
.legal-page li {
    font-size: 16px;
    color: #4a5d42;
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        padding: 60px 20px;
    }

    .hero-content-left {
        max-width: 100%;
        padding-right: 0;
    }

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

    .hero-image-right {
        margin-top: 40px;
    }

    .offset-intro {
        flex-direction: column;
        padding: 60px 20px;
        gap: 30px;
    }

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

    .service-card img {
        width: 100%;
        height: 200px;
    }

    .services-asymmetric {
        padding: 60px 20px;
    }

    .form-section-asymmetric {
        padding: 60px 20px;
    }

    .offset-form {
        margin-left: 0;
    }

    .trust-block-offset {
        flex-direction: column;
        padding: 60px 20px;
        gap: 30px;
    }

    .asymmetric-footer {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .asymmetric-nav {
        padding: 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
}