:root {
    --primary: #2d6a4f;
    --primary-light: #40916c;
    --primary-dark: #1b4332;
    --secondary: #74c69d;
    --accent: #d8f3dc;
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5a;
    --text-light: #6c6c7c;
    --bg-white: #ffffff;
    --bg-light: #f8faf9;
    --bg-soft: #e9f5ec;
    --border: #d4e5d9;
    --error: #c94a4a;
    --shadow-sm: 0 2px 8px rgba(45, 106, 79, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 106, 79, 0.12);
    --shadow-lg: 0 8px 32px rgba(45, 106, 79, 0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

* {
    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-dark);
    background-color: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

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

.header {
    background: var(--bg-white);
    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 0;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--bg-soft);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    margin-left: 12px;
}

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

.nav-main a {
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    color: var(--text-medium);
    transition: var(--transition);
}

.nav-main a:hover {
    background: var(--bg-soft);
    color: var(--primary);
}

.nav-main a.active {
    background: var(--primary);
    color: var(--bg-white);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-color: var(--bg-soft);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 60px 0;
}

.hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

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

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

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

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

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--bg-soft);
}

.section {
    padding: 80px 0;
}

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

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

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

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

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-card-image {
    height: 180px;
    background-color: var(--bg-soft);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
}

.service-card-content {
    padding: 24px;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

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

.service-price .unit {
    font-size: 0.9rem;
    color: var(--text-light);
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-dark);
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

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

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

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

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

.about-content {
    flex: 1;
}

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

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

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

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

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

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

.testimonials-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 16px;
}

.testimonial-card {
    flex: 0 0 360px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

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

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

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

.cta-section p {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.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%;
    margin-top: 8px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

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

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

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

.contact-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 500;
    color: var(--text-dark);
}

.contact-form-section {
    flex: 1.2;
}

.footer {
    background: var(--text-dark);
    color: var(--bg-light);
    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 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

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

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

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-light);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.85rem;
    color: var(--text-light);
    transition: var(--transition);
}

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

.page-hero {
    background: var(--bg-soft);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

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

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

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

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

.content-page ul {
    margin: 16px 0;
    padding-left: 24px;
}

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

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

.thanks-content {
    max-width: 500px;
}

.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;
    stroke: var(--primary-dark);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    padding: 20px 24px;
    z-index: 9999;
    display: none;
}

.cookie-banner.visible {
    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 p {
    font-size: 0.9rem;
    color: var(--text-medium);
}

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

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

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

.disclaimer-box {
    background: var(--bg-soft);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 32px 0;
}

.disclaimer-box p {
    font-size: 0.9rem;
    color: var(--text-medium);
}

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

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

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

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

.team-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hours-list {
    margin-top: 16px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    color: var(--text-dark);
    font-weight: 500;
}

.hours-time {
    color: var(--text-medium);
}

@media (max-width: 900px) {
    .about-layout {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 12px);
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
    }

    .nav-main.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .section {
        padding: 60px 0;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .form-wrapper {
        padding: 24px;
    }

    .testimonial-card {
        flex: 0 0 300px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 12px 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .ad-notice {
        display: none;
    }

    .hero {
        min-height: 400px;
    }

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

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

    .cta-section h2 {
        font-size: 1.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
