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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.nav-asymmetric {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e9ecef;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d6a4f;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-offset-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 80px 40px 80px 80px;
}

.hero-offset-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a3a2e;
    font-weight: 800;
}

.hero-offset-content p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #495057;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(-3deg);
    width: 55%;
    max-width: 800px;
    z-index: 1;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #2d6a4f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.cta-primary:hover {
    background: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
}

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

.intro-block-left {
    flex: 1;
    padding-left: 60px;
}

.intro-block-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a3a2e;
    font-weight: 700;
}

.intro-block-left p {
    font-size: 19px;
    line-height: 1.8;
    color: #495057;
}

.intro-block-right {
    flex: 1;
    transform: translateY(-40px);
}

.intro-block-right img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #b7e4c7;
}

.services-irregular {
    background: #f8f9fa;
    padding: 100px 40px 120px;
    position: relative;
}

.section-title-offset {
    max-width: 1400px;
    margin: 0 auto 80px;
    text-align: left;
    padding-left: 120px;
}

.section-title-offset h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a3a2e;
    font-weight: 700;
}

.section-title-offset p {
    font-size: 20px;
    color: #6c757d;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 30px);
    min-width: 320px;
    transition: all 0.3s;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 40px;
}

.card-offset-3 {
    margin-top: 80px;
}

.card-offset-4 {
    margin-top: 20px;
}

.card-offset-5 {
    margin-top: 60px;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #95d5b2;
}

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #1a3a2e;
    font-weight: 700;
}

.service-card p {
    padding: 0 25px;
    margin-bottom: 20px;
    color: #495057;
    font-size: 16px;
    line-height: 1.6;
}

.service-card .price {
    padding: 0 25px;
    font-size: 28px;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 20px;
}

.service-card .select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background: #2d6a4f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-card .select-service:hover {
    background: #1b4332;
    transform: scale(1.02);
}

.cta-overlap {
    position: relative;
    margin: 100px auto;
    max-width: 1400px;
    padding: 0 40px;
}

.cta-content-offset {
    background: linear-gradient(135deg, #2d6a4f 0%, #1b4332 100%);
    padding: 80px 60px;
    border-radius: 20px;
    color: white;
    transform: translateX(-80px);
    max-width: 700px;
    box-shadow: 0 20px 50px rgba(45, 106, 79, 0.3);
}

.cta-content-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-offset p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #2d6a4f;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.form-section {
    max-width: 1200px;
    margin: 120px auto;
    padding: 0 40px;
}

.form-container-asymmetric {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
    padding-top: 20px;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a3a2e;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
}

.contact-form {
    flex: 1;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d6a4f;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2d6a4f;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #1b4332;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 106, 79, 0.3);
}

.footer-asymmetric {
    background: #1a3a2e;
    color: white;
    padding: 80px 40px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 50px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-block {
    flex: 1;
    min-width: 200px;
}

.footer-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-block h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #95d5b2;
}

.footer-block p,
.footer-block a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.6;
}

.footer-block a:hover {
    color: #95d5b2;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 58, 46, 0.97);
    backdrop-filter: blur(10px);
    padding: 25px;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    color: white;
    line-height: 1.6;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject,
.btn-more {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-accept {
    background: #2d6a4f;
    color: white;
}

.btn-accept:hover {
    background: #1b4332;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-more {
    background: transparent;
    color: #95d5b2;
    border: 2px solid #95d5b2;
}

.btn-more:hover {
    background: #95d5b2;
    color: #1a3a2e;
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #f8f9fa;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2d6a4f;
    font-weight: 700;
}

.thanks-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 35px;
}

.contact-page-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 40px 80px;
    text-align: center;
}

.contact-page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a3a2e;
    font-weight: 700;
}

.contact-page-hero p {
    font-size: 20px;
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-block {
    flex: 1;
    min-width: 280px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a3a2e;
    font-weight: 700;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

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

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 30px;
    color: #1a3a2e;
    font-weight: 700;
}

.about-hero p {
    font-size: 22px;
    line-height: 1.7;
    color: #495057;
    max-width: 800px;
}

.about-content {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.about-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a3a2e;
    font-weight: 700;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.services-page-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 40px 80px;
    text-align: center;
}

.services-page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a3a2e;
    font-weight: 700;
}

.services-page-hero p {
    font-size: 20px;
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a3a2e;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2d6a4f;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page p,
.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 15px;
}

.legal-page ul {
    margin: 15px 0 25px 30px;
}

@media (max-width: 1200px) {
    .hero-image-overlap {
        width: 50%;
        right: -50px;
    }

    .intro-offset {
        gap: 50px;
    }

    .service-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-offset-content h1 {
        font-size: 38px;
    }

    .hero-offset-content {
        padding: 60px 20px;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        right: 0;
        transform: none;
        margin-top: 40px;
    }

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

    .intro-offset {
        flex-direction: column;
        margin: 60px auto;
        padding: 0 20px;
        gap: 40px;
    }

    .intro-block-left {
        padding-left: 0;
    }

    .intro-block-right {
        transform: none;
    }

    .section-title-offset {
        padding-left: 20px;
    }

    .section-title-offset h2 {
        font-size: 36px;
    }

    .service-card {
        width: 100%;
        margin-top: 0 !important;
    }

    .cta-content-offset {
        transform: none;
        padding: 50px 30px;
    }

    .form-container-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .footer-content {
        gap: 40px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}