:root {
    --primary: #1a5f2a;
    --primary-dark: #134620;
    --secondary: #2d8a4e;
    --accent: #7cb342;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --bg: #ffffff;
    --bg-alt: #f4f8f5;
    --bg-dark: #1a2e1f;
    --border: #d4e5d8;
    --shadow: rgba(26, 95, 42, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.ad-disclosure {
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 4px;
    margin-left: 16px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    color: var(--text);
    font-weight: 500;
    border-radius: 6px;
    transition: background 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.nav-link.active {
    background: var(--primary);
    color: var(--bg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 48px;
    background: var(--bg-alt);
}

.hero-image {
    flex: 1;
    background-color: var(--border);
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 480px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow);
    color: var(--bg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--bg);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-dark {
    background: var(--bg-dark);
    color: var(--bg);
}

.section-dark .section-title {
    color: var(--bg);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 640px;
    margin-bottom: 48px;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 64px;
}

.split-section.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: var(--border);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.features-row {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.feature-item {
    flex: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--bg-dark);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.feature-text {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 280px;
    background: var(--bg);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 180px;
    background-color: var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
}

.testimonials-wrapper {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background: var(--bg);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px var(--shadow);
}

.testimonial-text {
    font-size: 1.0625rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-dark);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

.cta-section {
    text-align: center;
    padding: 96px 24px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto 32px;
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 8px 32px var(--shadow);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    text-align: center;
}

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

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

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.3s ease;
}

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

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.125rem;
}

.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 32px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--bg);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-text {
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.disclaimer {
    background: var(--bg-alt);
    border-left: 4px solid var(--accent);
    padding: 24px;
    margin: 32px 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--bg);
    padding: 20px 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-text {
    flex: 1;
    font-size: 0.9375rem;
}

.cookie-text a {
    color: var(--accent);
}

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

.cookie-btn {
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.cookie-accept {
    background: var(--accent);
    color: var(--bg-dark);
}

.cookie-reject {
    background: transparent;
    color: var(--bg);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-header {
    background: var(--bg-alt);
    padding: 64px 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.content-section {
    padding: 64px 0;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 32px 0 16px;
}

.content-block h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 24px 0 12px;
}

.content-block p {
    margin-bottom: 16px;
    color: var(--text);
}

.content-block ul {
    margin: 16px 0 16px 24px;
}

.content-block li {
    margin-bottom: 8px;
    color: var(--text);
}

.contact-info {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 280px;
    background: var(--bg);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 16px var(--shadow);
}

.contact-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.contact-item-text {
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-wrapper {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 64px 24px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--bg-dark);
}

.thanks-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.thanks-text {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 32px;
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 260px;
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: var(--border);
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.stats-row {
    display: flex;
    gap: 48px;
    justify-content: center;
    text-align: center;
    padding: 48px 0;
}

.stat-item {
    flex: 1;
    max-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 48px 24px;
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .split-section.reverse {
        flex-direction: column;
    }

    .features-row {
        flex-direction: column;
    }

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

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        flex-direction: column;
        padding: 24px;
        border-top: 1px solid var(--border);
        box-shadow: 0 8px 24px var(--shadow);
    }

    .nav.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

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

    .stats-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .form-container {
        padding: 32px 24px;
    }
}
