:root {
    --color-primary: #2d5a3d;
    --color-primary-dark: #1e3d2a;
    --color-primary-light: #4a7a5a;
    --color-secondary: #8b9a6d;
    --color-accent: #d4a84b;
    --color-text: #2c3e2f;
    --color-text-light: #5a6b5c;
    --color-bg: #fafbf8;
    --color-bg-alt: #f0f4ec;
    --color-white: #ffffff;
    --color-border: #d8e0d4;
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    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-text);
    background-color: var(--color-bg);
}

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

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

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

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

h1 {
    font-size: 2.75rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.ad-disclosure {
    background-color: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: var(--transition);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: var(--color-bg-alt);
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.intro-section {
    padding: 5rem 5%;
    text-align: center;
    background-color: var(--color-white);
}

.intro-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.intro-wrapper h2 {
    margin-bottom: 1.5rem;
}

.intro-wrapper p {
    font-size: 1.125rem;
    color: var(--color-text-light);
}

.split-section,
.split-reverse {
    display: flex;
    min-height: 500px;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
}

.split-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.feature-list {
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-light);
}

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

.services-preview {
    padding: 5rem 5%;
    background-color: var(--color-bg-alt);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 300px;
    max-width: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.service-card .price {
    display: block;
    padding: 1rem 1.5rem 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

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

.testimonial-content blockquote {
    max-width: 500px;
}

.testimonial-content p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-style: normal;
    font-weight: 600;
    opacity: 0.9;
}

.cta-section {
    padding: 5rem 5%;
    background-color: var(--color-bg);
    text-align: center;
}

.cta-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    margin-bottom: 1rem;
}

.cta-wrapper p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.site-footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-brand h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.footer-links,
.footer-legal {
    flex: 1;
    min-width: 150px;
}

.footer-links h4,
.footer-legal h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.copyright {
    font-size: 0.875rem;
    opacity: 0.7;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-accept {
    padding: 0.75rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-reject {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.cookie-link {
    font-size: 0.9rem;
    text-decoration: underline;
}

.page-hero {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 5rem 5%;
    text-align: center;
}

.page-hero h1 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.page-hero p {
    opacity: 0.9;
    font-size: 1.125rem;
}

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

.values-section {
    padding: 5rem 5%;
    background-color: var(--color-bg-alt);
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 45%;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--color-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

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

.value-item p {
    color: var(--color-text-light);
    margin: 0;
}

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

.stats-section {
    padding: 4rem 5%;
    background-color: var(--color-primary);
}

.stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: var(--color-white);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.services-intro {
    padding: 4rem 5% 2rem;
    background-color: var(--color-white);
}

.services-full {
    padding: 2rem 5% 5rem;
    background-color: var(--color-white);
}

.service-full-item {
    display: flex;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--color-border);
}

.service-full-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-full-item.reverse {
    flex-direction: row-reverse;
}

.service-full-image {
    flex: 0 0 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-full-content {
    flex: 1;
}

.service-full-content h2 {
    margin-bottom: 1rem;
}

.service-includes {
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-text-light);
}

.service-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.service-pricing {
    background-color: var(--color-bg-alt);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.price-amount {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.price-note {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 0.25rem;
}

.packages-section {
    padding: 5rem 5%;
    background-color: var(--color-bg-alt);
}

.packages-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.packages-intro {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.packages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

.package-card {
    flex: 1 1 300px;
    max-width: 340px;
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
}

.package-card.featured {
    border: 2px solid var(--color-primary);
    transform: scale(1.02);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.375rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-card h3 {
    margin-bottom: 0.5rem;
}

.package-card > p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.package-card ul {
    margin-bottom: 1.5rem;
}

.package-card li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
}

.package-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 0.875rem;
}

.package-price {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.package-price .price-amount {
    font-size: 2rem;
}

.package-price .price-period {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.contact-split {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 300px;
}

.contact-form-wrapper h2 {
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.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, 61, 0.1);
}

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

.btn-submit {
    align-self: flex-start;
}

.contact-info-wrapper {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-card h3 {
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail:last-child {
    margin-bottom: 0;
}

.contact-detail h4 {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-detail p {
    color: var(--color-text-light);
    margin: 0;
    font-size: 0.95rem;
}

.email-display {
    word-break: break-all;
}

.service-areas {
    margin-top: 1rem;
}

.service-areas li {
    padding: 0.375rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.service-areas li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.faq-section {
    padding: 5rem 5%;
    background-color: var(--color-bg-alt);
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--color-text-light);
    margin: 0;
}

.thanks-section {
    padding: 8rem 5%;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-wrapper {
    max-width: 600px;
}

.thanks-icon {
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

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

.selected-service {
    background-color: var(--color-bg-alt);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: inline-block;
}

.thanks-details {
    background-color: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-details h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.thanks-details ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

.thanks-details li {
    padding: 0.5rem 0;
    color: var(--color-text-light);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-page {
    padding: 4rem 5%;
    background-color: var(--color-white);
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-updated {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.legal-content p {
    color: var(--color-text-light);
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-content li {
    padding: 0.375rem 0;
    color: var(--color-text-light);
    list-style: disc;
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-image {
        min-height: 300px;
    }

    .split-section,
    .split-reverse {
        flex-direction: column;
        min-height: auto;
    }

    .split-image {
        min-height: 300px;
    }

    .service-full-item,
    .service-full-item.reverse {
        flex-direction: column;
    }

    .service-full-image {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 1rem 5%;
        gap: 0;
        box-shadow: var(--shadow-md);
    }

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

    .nav-links li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content,
    .split-content {
        padding: 3rem 5%;
    }

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

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

    .cookie-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .package-card.featured {
        transform: none;
    }

    .stats-wrapper {
        gap: 2rem;
    }

    .stat-item {
        flex: 1 1 40%;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .service-card {
        max-width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions a {
        width: 100%;
    }
}
