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

:root {
    --primary: #1a4d2e;
    --secondary: #4f772d;
    --accent: #90b77d;
    --dark: #1b1b1b;
    --light: #f8f9fa;
    --text: #2d3748;
    --border: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--light);
}

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.nav-floating {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 5% 80px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 580px;
    z-index: 2;
    position: relative;
    margin-left: 8%;
}

.hero-title {
    font-size: 62px;
    line-height: 1.1;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 19px;
    color: var(--text);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-hero:hover {
    background: var(--secondary);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 52%;
    height: 70%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--accent);
}

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

.intro-offset {
    padding: 100px 8% 80px 12%;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-block-left {
    flex: 1.2;
}

.intro-block-left h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--dark);
    font-weight: 700;
}

.intro-block-left p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
}

.intro-stats-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 0.8;
}

.stat-card {
    background: white;
    padding: 32px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--secondary);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text);
}

.services-asymmetric {
    padding: 80px 6% 100px;
    background: white;
}

.services-header-offset {
    max-width: 620px;
    margin-left: 10%;
    margin-bottom: 70px;
}

.services-header-offset h2 {
    font-size: 44px;
    margin-bottom: 18px;
    color: var(--dark);
    font-weight: 700;
}

.services-header-offset p {
    font-size: 17px;
    color: var(--text);
    line-height: 1.7;
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    background: var(--light);
    border-radius: 16px;
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-card.offset-1 {
    margin-left: 5%;
}

.service-card.offset-2 {
    margin-left: 15%;
}

.service-card.offset-3 {
    margin-left: 8%;
}

.service-card.offset-4 {
    margin-left: 12%;
}

.service-card.offset-5 {
    margin-left: 3%;
}

.service-image-wrap {
    width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--accent);
}

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

.service-card h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--dark);
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
}

.btn-select-service {
    padding: 12px 32px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background: var(--primary);
    transform: scale(1.02);
}

.form-section-diagonal {
    padding: 120px 10% 120px 18%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
}

.form-container-offset {
    max-width: 600px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.form-container-offset h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 700;
}

.form-container-offset > p {
    margin-bottom: 32px;
    color: var(--text);
    font-size: 16px;
}

.selected-service-display {
    background: var(--light);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.label-selected {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}

#selectedServiceName {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
}

#selectedServicePrice {
    font-size: 15px;
    color: var(--text);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-submit {
    padding: 16px 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: var(--secondary);
    transform: scale(1.02);
}

.trust-section-overlap {
    padding: 100px 8% 100px 14%;
    background: white;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--dark);
    font-weight: 700;
}

.trust-features-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.trust-item {
    padding-left: 30px;
    border-left: 3px solid var(--accent);
}

.trust-item:nth-child(2) {
    margin-left: 12%;
}

.trust-item:nth-child(3) {
    margin-left: 20%;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 700;
}

.trust-item p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
}

.footer-asymmetric {
    background: var(--dark);
    color: white;
    padding: 70px 8% 40px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.brand-col {
    flex: 1.5;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--accent);
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--accent);
    font-weight: 600;
}

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

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

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.disclaimer-text {
    font-size: 12px;
    line-height: 1.6;
    color: #777;
    max-width: 900px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(27, 27, 27, 0.97);
    backdrop-filter: blur(10px);
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    color: white;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-cookie.accept {
    background: var(--secondary);
    color: white;
}

.btn-cookie.reject {
    background: #444;
    color: white;
}

.btn-cookie:hover {
    transform: scale(1.05);
}

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

.thanks-container {
    max-width: 600px;
    text-align: center;
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary);
}

.thanks-container p {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-service-info {
    background: var(--light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.thanks-service-info strong {
    color: var(--primary);
}

.btn-back-home {
    display: inline-block;
    padding: 14px 36px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-back-home:hover {
    background: var(--secondary);
}

.page-standard {
    padding: 160px 10% 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.page-standard h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: var(--dark);
    font-weight: 700;
}

.page-standard h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 700;
}

.page-standard h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--dark);
    font-weight: 600;
}

.page-standard p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text);
}

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

.page-standard li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--text);
}

.contact-page {
    padding: 160px 10% 80px;
}

.contact-info-asymmetric {
    display: flex;
    gap: 80px;
}

.contact-left {
    flex: 1;
}

.contact-left h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--dark);
    font-weight: 700;
}

.contact-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text);
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
}

.contact-email {
    color: var(--text);
    pointer-events: none;
}

.about-hero-offset {
    padding: 160px 10% 80px 16%;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-content {
    flex: 1.3;
}

.about-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--dark);
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text);
}

.about-image {
    flex: 1;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--accent);
}

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

.services-page-list {
    padding: 160px 8% 80px;
}

.services-page-list h1 {
    font-size: 48px;
    margin-bottom: 50px;
    color: var(--dark);
    font-weight: 700;
    margin-left: 6%;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding-top: 140px;
    }

    .hero-content-offset {
        margin-left: 0;
    }

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

    .intro-offset {
        flex-direction: column;
        padding: 60px 6%;
    }

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

    .service-image-wrap {
        width: 100%;
        height: 240px;
    }

    .form-section-diagonal {
        padding: 80px 6%;
    }

    .footer-main {
        flex-wrap: wrap;
        gap: 40px;
    }

    .contact-info-asymmetric {
        flex-direction: column;
    }

    .about-hero-offset {
        flex-direction: column;
        padding: 140px 6% 60px;
    }

    .nav-floating {
        left: 0;
        right: 0;
        transform: none;
        border-radius: 0;
        flex-direction: column;
        gap: 20px;
        top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .trust-item:nth-child(2),
    .trust-item:nth-child(3) {
        margin-left: 0;
    }

    .cookie-content {
        flex-direction: column;
    }
}