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

:root {
    --primary: #2c5530;
    --primary-dark: #1e3a22;
    --secondary: #c9a962;
    --accent: #8b4513;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #717171;
    --bg-white: #ffffff;
    --bg-cream: #f8f6f1;
    --bg-sage: #e8ede9;
    --bg-warm: #f5f0e8;
    --border-light: #e0ddd5;
}

html {
    scroll-behavior: smooth;
}

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

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

ul {
    list-style: none;
}

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

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

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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

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

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--text-medium);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 6px 0;
    transition: all 0.3s ease;
}

.hero {
    background-color: var(--bg-sage);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
    max-width: 480px;
}

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

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

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

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

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

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

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

.section {
    padding: 80px 0;
}

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

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

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

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.section-header-left {
    text-align: left;
    margin-bottom: 40px;
}

.section-header-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.section-header-left p {
    font-size: 16px;
    color: var(--text-medium);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

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

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

.service-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

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

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

.about-image {
    flex: 1;
    background-color: var(--bg-sage);
    border-radius: 12px;
    overflow: hidden;
    min-height: 360px;
}

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

.about-content {
    flex: 1;
}

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

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

.features-list {
    margin-top: 28px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-medium);
}

.features-list li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    margin-top: 2px;
}

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

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

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

.testimonial-author-image {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--bg-sage);
    overflow: hidden;
}

.testimonial-author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.cta-section {
    background-color: var(--primary);
    padding: 72px 0;
    text-align: center;
}

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

.cta-section p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn:hover {
    background-color: #b8983f;
}

.form-section {
    max-width: 640px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background-color: var(--bg-white);
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

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

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

.contact-info-item {
    flex: 1;
    text-align: center;
    padding: 32px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.contact-info-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-info-item p {
    font-size: 15px;
    color: var(--text-medium);
    line-height: 1.6;
}

footer {
    background-color: var(--text-dark);
    color: var(--bg-cream);
    padding: 56px 0 28px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 1;
    max-width: 320px;
}

.footer-brand .logo {
    color: var(--bg-white);
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links-column h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.footer-links-column ul li {
    margin-bottom: 12px;
}

.footer-links-column ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s ease;
}

.footer-links-column ul li a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px 24px;
    z-index: 1000;
    display: none;
}

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

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-banner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    flex: 1;
}

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

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

.cookie-banner-buttons button {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

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

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

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

.cookie-reject:hover {
    border-color: var(--bg-white);
}

.page-header {
    background-color: var(--bg-sage);
    padding: 56px 0;
    text-align: center;
}

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

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

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

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 28px;
    margin-bottom: 12px;
}

.legal-content p {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 15px;
    color: var(--text-medium);
    margin-bottom: 8px;
    list-style: disc;
}

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

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

.disclaimer {
    background-color: var(--bg-warm);
    padding: 24px;
    border-radius: 8px;
    margin-top: 40px;
}

.disclaimer p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.process-steps {
    display: flex;
    gap: 32px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.process-step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: var(--text-medium);
}

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

.value-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    padding: 28px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.value-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

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

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

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-image {
        width: 100%;
    }

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .process-steps {
        flex-direction: column;
    }
}

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

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

    .mobile-menu-toggle {
        display: block;
    }

    .header-content {
        position: relative;
    }

    .hero {
        padding: 48px 0;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .section {
        padding: 56px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

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

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

    .value-item {
        flex: 1 1 100%;
    }
}
