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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1e4620;
    --secondary-color: #5a8a3d;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

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

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-medium);
}

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

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

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

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

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

.ad-disclosure {
    background: var(--bg-light);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.875rem;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    max-width: 700px;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.intro-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.intro-section h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

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

.container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.split-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.split-content {
    width: 100%;
}

.split-content h2 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.services-preview {
    padding: 80px 20px;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

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

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

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

.service-select {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: auto;
}

.service-select:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.form-section h2 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.inquiry-form {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

.submit-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease, transform 0.2s ease;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.testimonial-section {
    padding: 80px 20px;
    background: var(--bg-white);
}

.testimonial-section h2 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

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

.process-section h2 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    color: var(--primary-dark);
}

.cta-section {
    padding: 80px 20px;
    background: var(--primary-dark);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button,
.cta-button-large {
    display: inline-block;
    background: white;
    color: var(--primary-dark);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-button:hover,
.cta-button-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

.disclaimer-section {
    padding: 60px 20px;
    background: var(--bg-light);
    border-top: 2px solid var(--border-color);
}

.disclaimer-section h3 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.disclaimer-section p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

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

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.sticky-cta-button {
    background: var(--primary-color);
    color: white;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: background 0.3s ease, transform 0.3s ease;
}

.sticky-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 200;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-content a {
    color: white;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

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

.btn-accept:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    color: white;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-intro,
.about-values,
.about-approach,
.about-expertise,
.about-mission {
    padding: 80px 20px;
}

.about-intro {
    background: var(--bg-white);
}

.about-values {
    background: var(--bg-light);
}

.about-approach {
    background: var(--bg-white);
}

.about-expertise {
    background: var(--bg-light);
}

.about-mission {
    background: var(--primary-dark);
    color: white;
    text-align: center;
}

.about-mission h2 {
    color: white;
}

.about-mission p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    color: var(--primary-color);
}

.expertise-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
}

.expertise-item h3 {
    color: var(--primary-dark);
}

.services-detail {
    padding: 60px 20px;
    background: var(--bg-white);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-detail-image {
    width: 100%;
}

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

.service-detail-content {
    padding: 2.5rem;
}

.service-detail-content h2 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.services-info {
    padding: 60px 20px;
    background: var(--bg-light);
}

.services-info h2 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-section {
    padding: 60px 20px;
    background: var(--bg-white);
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info {
    width: 100%;
}

.contact-info h2 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-map {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-map img {
    width: 100%;
}

.map-caption {
    padding: 1rem;
    background: var(--bg-light);
    font-size: 0.9rem;
    color: var(--text-medium);
    text-align: center;
}

.contact-details {
    padding: 60px 20px;
    background: var(--bg-light);
}

.directions-section {
    padding: 60px 20px;
    background: var(--bg-white);
}

.directions-section h2 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.directions-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.direction-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.faq-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.faq-section h2 {
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.thanks-section {
    padding: 80px 20px;
    background: var(--bg-white);
    min-height: 60vh;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 2rem;
    width: 80px;
    height: 80px;
}

.thanks-content h1 {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.service-confirmation p {
    margin: 0;
    font-size: 1.125rem;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 3rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.thanks-info {
    padding: 60px 20px;
    background: var(--bg-light);
}

.legal-page {
    padding: 60px 20px;
    background: var(--bg-white);
}

.legal-page h1 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.legal-page h2 {
    color: var(--primary-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-page h3,
.legal-page h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.last-updated {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .hero-section {
        flex-direction: row;
        align-items: center;
        padding: 100px 20px;
    }

    .hero-content {
        width: 50%;
    }

    .hero-image {
        width: 50%;
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        width: calc(50% - 1rem);
    }

    .container-split {
        flex-direction: row;
        align-items: center;
    }

    .split-image,
    .split-content {
        width: 50%;
    }

    .service-detail-card {
        flex-direction: row;
    }

    .service-detail-card.reverse {
        flex-direction: row-reverse;
    }

    .service-detail-image {
        width: 40%;
    }

    .service-detail-content {
        width: 60%;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        width: calc(50% - 1rem);
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        width: calc(50% - 1rem);
    }

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

    .contact-info,
    .contact-map {
        width: 50%;
    }

    .directions-grid {
        flex-direction: row;
    }

    .direction-card {
        width: calc(50% - 1rem);
    }

    .testimonials {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        width: calc(50% - 1rem);
    }

    .thanks-actions {
        flex-direction: row;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        width: calc(33.333% - 1rem);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        width: calc(33.333% - 1.33rem);
    }

    .testimonials {
        flex-wrap: nowrap;
    }

    .testimonial {
        width: calc(33.333% - 1.33rem);
    }

    .values-grid {
        flex-wrap: nowrap;
    }

    .value-card {
        width: calc(25% - 1.5rem);
    }
}