:root {
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --secondary: #52b788;
    --accent: #95d5b2;
    --light: #d8f3dc;
    --dark: #1b263b;
    --text: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --bg-alt: #f8faf9;
    --shadow: 0 4px 24px rgba(45, 106, 79, 0.12);
    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

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

img {
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

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

.logo span {
    color: var(--secondary);
}

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

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

.nav-links a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

.ad-label {
    background: var(--light);
    color: var(--primary-dark);
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 20px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: 0.3s;
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.92) 0%, rgba(27, 67, 50, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 36px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--accent);
    color: var(--primary-dark);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section {
    padding: 100px 0;
}

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

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

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

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

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
}

.section-dark .section-subtitle {
    color: var(--accent);
}

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

.section-header-center {
    text-align: center;
}

.section-header-center .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-card p {
    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.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.about-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 320px;
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 420px;
}

.about-content {
    flex: 1;
    min-width: 320px;
}

.about-content h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

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

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    flex: 1 1 calc(25% - 24px);
    min-width: 220px;
    text-align: center;
    padding: 32px 24px;
}

.value-card h4 {
    color: var(--white);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--accent);
    font-size: 0.95rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--light);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--light);
}

.contact-flex {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-item h4 {
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-light);
}

.contact-form-box {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

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

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

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

.form-submit {
    width: 100%;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 24px;
}

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

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

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

.footer-col a {
    color: #b0b0b0;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    color: #888;
    font-size: 0.9rem;
}

.disclaimer {
    background: var(--bg-alt);
    padding: 40px 0;
    font-size: 0.85rem;
    color: var(--text-light);
    border-top: 1px solid #e0e0e0;
}

.disclaimer p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

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

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

.cookie-text {
    flex: 1;
    min-width: 280px;
}

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

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

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

.cookie-reject {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero p {
    color: var(--accent);
    max-width: 600px;
    margin: 0 auto;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--dark);
    margin: 40px 0 16px;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin: 32px 0 12px;
}

.legal-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    max-width: 800px;
}

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-light);
}

.legal-content li {
    margin-bottom: 8px;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.thanks-box {
    max-width: 560px;
}

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

.thanks-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.thanks-box h1 {
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.thanks-box p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.features-alt {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    min-width: 320px;
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 360px;
}

.feature-content {
    flex: 1;
    min-width: 320px;
}

.feature-content h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.feature-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

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

.team-card {
    flex: 0 1 280px;
    text-align: center;
}

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

.team-photo img {
    width: 100%;
    height: 100%;
}

.team-card h4 {
    color: var(--dark);
    margin-bottom: 4px;
}

.team-card span {
    color: var(--primary);
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav.active .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow);
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .about-flex,
    .contact-flex,
    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
    }

    .stats-row {
        justify-content: center;
    }
}

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

    .hero {
        min-height: 70vh;
    }

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

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

    .service-card {
        min-width: 100%;
    }

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