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

:root {
    --primary: #2d5a27;
    --primary-dark: #1e3d1a;
    --secondary: #7cb342;
    --accent: #8bc34a;
    --text: #333333;
    --text-light: #666666;
    --bg-light: #f8faf5;
    --bg-alt: #e8f0e3;
    --white: #ffffff;
    --border: #d4e4cf;
    --shadow: rgba(45, 90, 39, 0.12);
}

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

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

.ad-disclosure {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
}

.top-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.nav-links a:hover::after {
    width: 100%;
}

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

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

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

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

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

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

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

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

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

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

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

.section {
    padding: 80px 0;
}

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

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

.section-title {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 16px;
    text-align: center;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 0;
    width: 350px;
    box-shadow: 0 4px 20px var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

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

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

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

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

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-image {
    flex: 1;
    min-width: 300px;
    background-color: var(--bg-alt);
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

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

.split-content h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

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

.feature-list {
    list-style: none;
    margin: 24px 0;
}

.feature-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-alt) 100%);
}

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

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    max-width: 380px;
    box-shadow: 0 4px 16px var(--shadow);
}

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

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

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

.cta-section {
    background: var(--primary);
    text-align: center;
    padding: 60px 24px;
}

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

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    font-size: 18px;
}

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

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

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    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(--secondary);
}

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

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

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

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

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

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

.legal-content h1 {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 32px;
}

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

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

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

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

.contact-info {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.contact-info h3 {
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.contact-info p {
    margin-bottom: 8px;
    color: var(--text);
}

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

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

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

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

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

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

.cookie-inner {
    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: 280px;
    font-size: 14px;
    color: var(--text);
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

.cookie-reject {
    background: var(--bg-light);
    color: var(--text);
    border: 1px solid var(--border);
}

.cookie-reject:hover {
    background: var(--bg-alt);
}

.about-hero {
    background: var(--bg-alt);
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.team-section {
    padding: 80px 0;
}

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

.team-member {
    text-align: center;
    max-width: 280px;
}

.team-member-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background-color: var(--bg-alt);
    overflow: hidden;
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.team-member p {
    color: var(--text-light);
    font-size: 14px;
}

.values-section {
    background: var(--bg-light);
    padding: 80px 0;
}

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

.value-item {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 4px 16px var(--shadow);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--bg-alt);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

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

.value-item p {
    color: var(--text-light);
    font-size: 15px;
}

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

.page-header h1 {
    font-size: 38px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-light);
    font-size: 18px;
}

.disclaimer {
    background: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
    font-size: 13px;
    color: var(--text-light);
    border-left: 4px solid var(--secondary);
}

.email-display {
    color: var(--text);
    cursor: default;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-bg {
        width: 100%;
        opacity: 0.3;
    }

    .section-title {
        font-size: 28px;
    }

    .split-section {
        gap: 32px;
    }

    .footer-grid {
        gap: 32px;
    }
}
