:root {
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --secondary: #74c69d;
    --accent: #b7e4c7;
    --dark: #1e1e1e;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --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(--dark);
    background: var(--white);
}

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

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

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

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

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

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

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

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header-top {
    background: var(--primary-dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.85rem;
    text-align: center;
}

.header-main {
    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);
}

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

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

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

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

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

.hero {
    margin-top: 100px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-split {
    display: flex;
    width: 100%;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

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

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

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

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

section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.features {
    background: var(--light);
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

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

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

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

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

.services-preview {
    background: var(--white);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-row {
    display: flex;
    align-items: stretch;
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0 0 40%;
    min-height: 300px;
    background-color: var(--accent);
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-info p {
    color: var(--gray);
    margin-bottom: 20px;
}

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

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 16px;
    opacity: 0.9;
}

.about-image {
    flex: 1;
    background-color: var(--primary);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
}

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

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

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonials {
    background: var(--light);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 24px;
    position: relative;
    padding-left: 24px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 3rem;
    color: var(--secondary);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
}

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

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray);
}

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

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 32px;
    opacity: 0.9;
}

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

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

.contact-form-section {
    background: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--light);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

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

.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 {
    text-align: center;
}

.form-submit .btn {
    min-width: 200px;
}

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

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

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

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px 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: 24px;
    flex-wrap: wrap;
}

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

.cookie-text p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.cookie-text a {
    color: var(--secondary);
    text-decoration: underline;
}

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

.cookie-buttons .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.page-header {
    margin-top: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-header p {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 24px;
}

.page-content .container {
    max-width: 900px;
}

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

.legal-content h2:first-child {
    margin-top: 0;
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
    color: var(--gray);
}

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

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

.services-page .service-card {
    flex: 1;
    min-width: 320px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.services-page .service-card-image {
    height: 200px;
    background-color: var(--accent);
}

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

.services-page .service-card-content {
    padding: 32px;
}

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

.services-page .service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.services-page .service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-info-card {
    flex: 1;
    min-width: 250px;
    background: var(--light);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
}

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

.contact-info-card p {
    color: var(--gray);
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light);
}

.thanks-content {
    max-width: 600px;
    padding: 60px 32px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

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

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

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

.thanks-content p {
    color: var(--gray);
    margin-bottom: 32px;
}

.about-page-content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.about-page-text {
    flex: 1;
}

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

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

.about-page-image {
    flex: 0 0 40%;
    background-color: var(--accent);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
}

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

.values-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--gray-light);
}

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

.value-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

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

.value-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary);
}

.value-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

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

.disclaimer {
    background: var(--gray-light);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--gray);
}

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

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

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

    .hero-image {
        min-height: 300px;
    }

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

    .about-image {
        width: 100%;
        min-height: 300px;
    }

    .service-row,
    .service-row:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        min-height: 200px;
    }

    .about-page-content {
        flex-direction: column;
    }

    .about-page-image {
        width: 100%;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 24px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    nav.active {
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 16px;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .stats {
        flex-direction: column;
        gap: 24px;
    }

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

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