:root {
    --color-primary: #2d5a45;
    --color-secondary: #e8a54b;
    --color-accent: #4a7c59;
    --color-dark: #1a1a1a;
    --color-light: #f9f7f4;
    --color-muted: #6b7280;
    --color-border: #e5e7eb;
    --color-card-bg: #ffffff;
    --color-section-alt: #f3f0eb;
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

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

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

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

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

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

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

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.625rem; }

p { margin-bottom: 1rem; }

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

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--color-muted);
    background-color: var(--color-section-alt);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

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

.nav-main a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    color: var(--color-dark);
    font-weight: 500;
    transition: background-color 0.25s ease, color 0.25s ease;
}

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

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

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

.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-primary);
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    color: white;
}

.hero-content h1 {
    color: white;
    font-size: 3rem;
    max-width: 700px;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.25s ease;
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #d4943f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-dark);
}

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

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

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

.section {
    padding: 80px 0;
}

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

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

.section-dark h2,
.section-dark h3 {
    color: white;
}

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

.section-header p {
    color: var(--color-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.card {
    background-color: var(--color-card-bg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex: 1 1 320px;
    max-width: 380px;
}

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

.card-image {
    height: 200px;
    background-color: var(--color-section-alt);
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    margin-bottom: 12px;
}

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

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 16px 0;
}

.card-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-muted);
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-top: 48px;
}

.feature-item {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    padding: 24px;
}

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

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

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

.split-content {
    flex: 1 1 400px;
}

.split-image {
    flex: 1 1 400px;
    background-color: var(--color-section-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 350px;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
}

.form-container {
    background-color: var(--color-card-bg);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

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

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

.form-submit {
    width: 100%;
    margin-top: 8px;
}

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

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

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

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-section-alt);
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin: 0;
}

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

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

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

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

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

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

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

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

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

.footer-bottom a {
    color: rgba(255,255,255,0.6);
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-dark);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.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 1 400px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: background-color 0.25s ease;
}

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

.cookie-accept:hover {
    background-color: #d4943f;
}

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

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

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

.legal-content h1 {
    margin-bottom: 32px;
}

.legal-content h2 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

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

.legal-content p,
.legal-content li {
    color: var(--color-muted);
}

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

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

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

.contact-info-item {
    flex: 1 1 250px;
    background-color: var(--color-card-bg);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

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

.contact-info-item p {
    color: var(--color-muted);
    margin: 0;
    font-size: 0.95rem;
}

.thanks-container {
    text-align: center;
    padding: 120px 24px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

.thanks-container p {
    font-size: 1.1rem;
    color: var(--color-muted);
}

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

.about-text {
    flex: 1 1 450px;
}

.about-image {
    flex: 1 1 350px;
    background-color: var(--color-section-alt);
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 300px;
}

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

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

.value-card {
    flex: 1 1 280px;
    background-color: var(--color-card-bg);
    padding: 32px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

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

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

.cta-banner {
    background-color: var(--color-primary);
    color: white;
    padding: 60px 24px;
    text-align: center;
    border-radius: var(--radius-lg);
    margin: 60px 0;
}

.cta-banner h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-banner p {
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 24px;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-main {
        width: 100%;
        flex-direction: column;
        gap: 4px;
        display: none;
    }

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

    .nav-main a {
        width: 100%;
        text-align: left;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 24px;
        top: 20px;
    }

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

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    .section {
        padding: 50px 0;
    }

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

    .form-container {
        padding: 24px;
    }

    .footer-grid {
        gap: 32px;
    }

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

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