:root {
    --primary: #2d5a4a;
    --primary-light: #3d7a64;
    --primary-dark: #1d3a32;
    --secondary: #8b6914;
    --accent: #c49a2c;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-cream: #faf8f5;
    --bg-light: #f5f2ed;
    --bg-white: #ffffff;
    --border-light: #e8e4de;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --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', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-cream);
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2.75rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.25rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; }

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

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

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

.btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

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

.btn-secondary:hover {
    background-color: var(--secondary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

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

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

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background-color: var(--primary-dark);
    color: var(--bg-cream);
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ad-disclosure {
    background-color: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
}

.header-main {
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

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

.nav-main a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition);
}

.nav-main a:hover::after,
.nav-main a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero Split */
.hero-split {
    display: flex;
    min-height: 85vh;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px;
    background-color: var(--bg-cream);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    background-color: var(--border-light);
    position: relative;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

/* Split Section */
.split-section {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    min-width: 300px;
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-image {
    flex: 1;
    min-width: 300px;
    min-height: 350px;
    background-color: var(--border-light);
    position: relative;
    overflow: hidden;
}

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

/* Section Styles */
.section {
    padding: 80px 0;
}

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

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

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

.section-primary h2,
.section-primary h3 {
    color: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

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

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

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

.service-card-image {
    height: 200px;
    background-color: var(--border-light);
    position: relative;
    overflow: hidden;
}

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

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

.service-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
}

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

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

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

/* Features List */
.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    display: flex;
    gap: 16px;
}

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

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

.feature-text h4 {
    margin-bottom: 8px;
}

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

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

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

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

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

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

.testimonial-info strong {
    display: block;
    color: var(--text-dark);
}

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

/* Form Styles */
.form-wrapper {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(45,90,74,0.1);
}

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

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.form-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.form-consent label {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.5;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

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

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

.contact-text strong {
    display: block;
    margin-bottom: 4px;
}

.contact-text span {
    color: var(--text-medium);
}

/* Stats */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    padding: 40px 0;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

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

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

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--bg-cream);
    padding: 60px 0 0;
}

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

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

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

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

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

.footer-col a {
    color: var(--bg-cream);
    opacity: 0.85;
    transition: opacity var(--transition);
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-col p {
    opacity: 0.85;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 16px;
    display: block;
}

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

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

.footer-disclaimer {
    background-color: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-top: 24px;
    font-size: 0.85rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Legal Pages */
.legal-content {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-md);
    margin: 40px 0;
}

.legal-content h1 {
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-light);
}

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

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

/* Thanks Page */
.thanks-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

.thanks-card {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    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-white);
}

.thanks-card h1 {
    color: var(--primary);
    margin-bottom: 16px;
}

.thanks-card p {
    color: var(--text-medium);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.thanks-service {
    background-color: var(--bg-light);
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 32px;
}

.thanks-service strong {
    color: var(--primary);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    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 {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

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

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

/* About Page */
.about-hero {
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    color: var(--bg-white);
    margin-bottom: 16px;
}

.about-hero p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1.15rem;
}

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

.team-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--primary-light);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--bg-white);
    font-weight: 600;
}

.team-card h3 {
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}

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

/* Timeline */
.timeline {
    position: relative;
    padding-left: 32px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--primary);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline-year {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        padding: 20px;
        box-shadow: var(--shadow-soft);
    }

    .nav-main.active {
        display: block;
    }

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

    .nav-toggle {
        display: block;
    }

    .hero-split {
        min-height: auto;
    }

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

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

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

    .section {
        padding: 60px 0;
    }

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

    .legal-content {
        padding: 32px 24px;
    }

    .thanks-card {
        padding: 40px 24px;
    }

    .footer-content {
        gap: 32px;
    }

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

@media (max-width: 480px) {
    .header-top-content {
        justify-content: center;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .stats-row {
        gap: 24px;
    }

    .stat-number {
        font-size: 2.25rem;
    }
}
