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

:root {
    --primary-green: #2d5016;
    --accent-green: #4a7c2c;
    --light-green: #8fb569;
    --bg-light: #f8f9f5;
    --bg-cream: #fefdf8;
    --text-dark: #1a1a1a;
    --text-gray: #5a5a5a;
    --border-light: #e0e5d8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-cream);
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.nav-disclosure {
    font-size: 0.75rem;
    color: var(--text-gray);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

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

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

.hero-asymmetric {
    margin-top: 100px;
    min-height: 85vh;
    padding: 0 5%;
}

.hero-offset-block {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-text-layer {
    flex: 1;
    max-width: 500px;
    padding-left: 40px;
}

.hero-text-layer h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-text-layer p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

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

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

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-top: -80px;
}

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

.intro-overlap {
    padding: 120px 5% 80px;
    display: flex;
    gap: 80px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-small-text {
    flex: 1;
    padding-top: 40px;
}

.intro-small-text h2 {
    font-size: 2.4rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-small-text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.intro-offset-card {
    flex: 1;
    position: relative;
    margin-top: -60px;
}

.intro-offset-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.card-overlay-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(45, 80, 22, 0.9);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.services-irregular {
    padding: 100px 5%;
    background: var(--bg-light);
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    padding-left: 120px;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 1.08rem;
    color: var(--text-gray);
}

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

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card-1 {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
}

.service-card-2 {
    flex: 1 1 calc(40% - 15px);
    min-width: 300px;
}

.service-card-3 {
    flex: 1 1 calc(35% - 15px);
    min-width: 300px;
}

.service-card-4 {
    flex: 1 1 calc(65% - 15px);
    min-width: 350px;
}

.service-card-5 {
    flex: 1 1 calc(55% - 15px);
    min-width: 350px;
}

.service-card-6 {
    flex: 1 1 calc(45% - 15px);
    min-width: 300px;
}

.service-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: var(--bg-light);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-content p {
    font-size: 0.98rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 1.3rem;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 20px;
}

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

.btn-select-service:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

.form-section-offset {
    padding: 100px 5%;
    background: var(--bg-cream);
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.form-intro h2 {
    font-size: 2.4rem;
    color: var(--primary-green);
    margin-bottom: 18px;
    font-weight: 700;
}

.form-intro p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--accent-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.trust-section {
    padding: 100px 5%;
    background: var(--primary-green);
    color: white;
}

.trust-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.trust-text {
    flex: 1.2;
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.trust-text p {
    font-size: 1.08rem;
    line-height: 1.8;
    opacity: 0.95;
}

.trust-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-green);
}

.stat-label {
    font-size: 1.05rem;
    margin-top: 5px;
    opacity: 0.9;
}

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 5% 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: white;
    padding: 25px 5%;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    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: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--light-green);
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-accept {
    background: var(--accent-green);
    color: white;
}

.btn-accept:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.page-header {
    margin-top: 120px;
    padding: 80px 5% 60px;
    background: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 800;
}

.page-header p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    margin-top: 40px;
    font-weight: 700;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    margin-top: 30px;
    font-weight: 600;
}

.content-section p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-section ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.content-section ul li {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 1.3rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 10px;
}

.thanks-container {
    margin-top: 120px;
    padding: 100px 5%;
    text-align: center;
    min-height: 60vh;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    font-size: 4rem;
    color: var(--accent-green);
    margin-bottom: 25px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--accent-green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.thanks-content a:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-offset-block {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text-layer {
        padding-left: 0;
    }

    .hero-text-layer h1 {
        font-size: 2.2rem;
    }

    .hero-image-offset {
        margin-top: 0;
    }

    .intro-overlap {
        flex-direction: column;
        gap: 40px;
    }

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

    .section-header-offset {
        padding-left: 0;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {
        flex: 1 1 100%;
    }

    .form-wrapper {
        flex-direction: column;
    }

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

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

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

    .nav-container {
        flex-wrap: wrap;
        gap: 15px;
    }

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