:root {
    --green: #94c3a1;
    --green-dark: #2d5f3d;
    --green-darker: #1e4028;
    --gold: #f4ce97;
    --gold-dark: #8b6914;
    --white: #ffffff;
    --black: #000000;
    --deep-bg: #ffffff;
    --panel-bg: #f8f9fa;
    --text-body: #000000;
    --text-muted: #000000;
    --border-subtle: #e0e0e0;
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--green);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    box-shadow: var(--shadow-strong);
    font-size: 24px;
    line-height: 1;
}

.scroll-to-top:hover {
    background-color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Multi-channel contact widget */
.contact-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.contact-widget-btn {
    background-color: var(--green);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(148, 195, 161, 0.4);
    transition: all 0.3s ease;
}

.contact-widget-btn:hover {
    background-color: var(--green-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(148, 195, 161, 0.5);
}

.contact-widget-btn svg {
    transition: transform 0.3s ease;
}

.contact-widget-btn:hover svg {
    transform: scale(1.1);
}

.contact-widget-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    width: 320px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideUp 0.3s ease;
}

.contact-widget-menu.hidden {
    display: none;
}

.contact-widget-header {
    background: var(--green);
    color: white;
    padding: 20px;
    text-align: center;
}

.contact-widget-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.contact-widget-options {
    padding: 12px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    background: #f8f9fa;
    text-decoration: none;
    color: var(--black);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

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

.contact-option:hover {
    background: #e9ecef;
    transform: translateX(4px);
}

.contact-option svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--green);
}

.contact-option.instagram svg {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-radius: 6px;
    padding: 2px;
}

.contact-option div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.contact-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .contact-widget {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .contact-widget-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .contact-widget-menu {
        width: calc(100vw - 3rem);
        max-width: 320px;
        right: 0;
        left: auto;
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.8;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
    letter-spacing: 0.3px;
}

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

.header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 1000;
    padding: 1.5rem 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 62px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo {
        height: 49px;
    }
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--green-dark);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-menu a:hover {
    color: var(--black);
}

.nav-menu a:focus {
    color: var(--black);
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
}

.btn:focus {
    outline: 2px solid var(--green-darker);
    outline-offset: 2px;
}

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

.btn-primary:hover {
    background-color: var(--green-dark);
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-secondary:hover {
    background-color: var(--green);
    color: var(--black);
}

.btn-outline {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline:hover {
    background-color: var(--green);
    color: var(--black);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero {
    padding: 12rem 0 10rem;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), 
                url('/attached_assets/hero-option2.jpg') center/cover no-repeat;
    text-align: center;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 2rem;
    color: var(--white);
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: -1px;
    font-family: Georgia, 'Times New Roman', serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-lead {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.8;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

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

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

.hero-trust {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    color: var(--white);
    font-size: 0.95rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

section {
    padding: 6rem 0;
}

section h2 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--black);
    text-align: center;
    font-weight: 300;
    letter-spacing: -0.5px;
    font-family: Georgia, 'Times New Roman', serif;
}

.section-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 4rem;
    font-weight: 300;
    line-height: 1.8;
}

.specialties {
    background-color: var(--panel-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--deep-bg);
    border: none;
    border-top: 3px solid var(--green-dark);
    border-radius: 0;
    padding: 2.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-top-color: var(--gold-dark);
}

.service-card h3 {
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 1.25rem;
    font-weight: 300;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -0.3px;
}

.service-tagline {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.service-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

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

.service-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: bold;
}

.service-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.services-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card-small {
    background-color: var(--panel-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.3s ease;
}

.service-card-small:hover {
    border-color: var(--gold-dark);
}

.service-card-small h3 {
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.service-card-small p {
    color: var(--text-muted);
}

.section-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.reviews {
    background-color: var(--panel-bg);
    text-align: center;
}

.testimonials-carousel {
    position: relative;
    max-width: 100%;
    margin: 3rem 0;
    padding: 0;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scrollTestimonials 30s linear infinite;
    width: max-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    min-width: 400px;
    max-width: 400px;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    color: #f4ce97;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--black);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.carousel-btn {
    display: none;
}

.carousel-dots {
    display: none;
}

.reviews-cta {
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonials-track {
        gap: 1.5rem;
        animation: scrollTestimonials 25s linear infinite;
    }
}

.faq {
    background-color: var(--deep-bg);
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    border-radius: 0;
    margin-bottom: 0;
}

.faq-icon {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--green);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact {
    background-color: var(--panel-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-card {
    background-color: var(--white);
    border: none;
    border-radius: 0;
    padding: 3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 2.5rem;
    font-weight: 300;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -0.5px;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.contact-info strong {
    color: var(--black);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.contact-map {
    background-color: var(--white);
    padding: 0;
    position: relative;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
}

.map-note {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    color: var(--black);
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 90%;
}

.brands-banner {
    background-color: #f5f5f5;
    padding: 4rem 0;
    overflow: hidden;
}

.brands-scroll {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 6rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.footer {
    background-color: #f8edc2;
    padding: 4rem 0 2rem;
    margin-top: 0;
    color: var(--black);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--green-darker);
    transform: translateX(3px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item p {
    margin: 0;
    line-height: 1.6;
    color: var(--black);
}

.footer-contact-item a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact-item a:hover {
    color: var(--green-darker);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    padding-top: 2rem;
    text-align: center;
    color: var(--black);
    font-size: 0.9rem;
}

.service-hero {
    padding: 6rem 0 5rem;
    background: var(--white);
    text-align: center;
}

.service-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    margin-bottom: 2rem;
    color: var(--black);
    line-height: 1.15;
    font-weight: 300;
    letter-spacing: -0.8px;
    font-family: Georgia, 'Times New Roman', serif;
}

.service-lead {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}

.service-content {
    background-color: var(--panel-bg);
}

.service-section {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.service-section h2 {
    font-size: 2.25rem;
    color: var(--black);
    margin-bottom: 1.75rem;
    text-align: left;
    font-weight: 300;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: -0.5px;
}

.service-section p,
.service-section li {
    color: var(--text-muted);
    line-height: 1.8;
}

.service-section ul,
.service-section ol {
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.service-section li {
    margin-bottom: 0.75rem;
}

.service-section ol li strong {
    color: var(--black);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    background-color: var(--deep-bg);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1.5rem;
}

.benefit-item h3 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.benefit-item p {
    font-size: 0.95rem;
}

.service-cta-block {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    background-color: var(--deep-bg);
    border: 2px solid var(--green-dark);
    border-radius: 12px;
    padding: 3rem 2rem;
}

.service-cta-block h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 1rem;
}

.service-cta-block p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.back-link {
    margin-top: 1rem;
}

.back-link a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: var(--black);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--deep-bg);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-subtle);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: scaleY(1);
    }

    .nav-menu li {
        padding: 0.75rem 1.5rem;
    }

    .nav-menu a {
        display: block;
    }

    .hero-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    .service-cta,
    .hero-cta,
    .contact-actions,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 3rem 0;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }
}

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

a:focus,
button:focus {
    outline: 2px solid var(--green-darker);
    outline-offset: 2px;
}

.blog-section {
    padding: 4rem 0 6rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.blog-card {
    background-color: var(--white);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card-content {
    padding: 2rem 0;
}

.blog-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.3;
    text-align: left;
}

.blog-excerpt {
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-meta {
    color: var(--black);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-cta {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--panel-bg);
    max-width: 700px;
    margin: 0 auto;
}

.blog-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 300;
}

.blog-cta p {
    margin-bottom: 2rem;
    color: var(--black);
}

.article-header {
    padding: 4rem 0 3rem;
    text-align: center;
}

.article-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--black);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 300;
    line-height: 1.2;
}

.audio-player {
    margin-top: 1.5rem;
}

.audio-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.audio-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.audio-btn svg {
    width: 20px;
    height: 20px;
}

.audio-btn.playing .play-icon {
    display: none;
}

.audio-btn.playing .pause-icon {
    display: block !important;
}

.article-meta {
    color: var(--black);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.article-hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    margin: 3rem 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.article-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--black);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    text-align: left;
}

.article-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    text-align: left;
}

.article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--black);
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: var(--black);
}

.article-content strong {
    font-weight: 600;
    color: var(--black);
}

.article-cta {
    background-color: var(--panel-bg);
    padding: 3rem 2rem;
    text-align: center;
    margin: 4rem 0;
}

.article-cta h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
}

.article-cta p {
    margin-bottom: 2rem;
    color: var(--black);
}

.related-articles {
    padding: 4rem 0;
    background-color: var(--panel-bg);
}

.related-articles h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--black);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 300;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.related-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--green);
}

.related-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.related-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.related-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    line-height: 1.4;
}

.related-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.related-card .read-more {
    color: var(--green);
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-card:hover .read-more {
    color: var(--gold);
}

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

.faq-accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-accordion-button {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    color: var(--black);
    font-weight: 400;
    transition: color 0.3s ease;
}

.faq-accordion-button:hover {
    color: var(--green);
}

.faq-accordion-button[aria-expanded="true"] {
    color: var(--green);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--green);
    font-weight: 300;
}

.faq-accordion-button[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0;
}

.faq-accordion-content p {
    padding: 1.5rem 0;
    margin: 0;
    color: #555;
    line-height: 1.8;
}

.article-author {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.article-author p {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
}

.article-author .author-name {
    color: var(--black);
    font-weight: 500;
    font-style: normal;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 3px solid var(--green);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.cookie-banner-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.cookie-btn-accept:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--black);
    border: 2px solid #e0e0e0;
}

.cookie-btn-decline:hover {
    border-color: var(--green);
    color: var(--green);
}

.cookie-btn-settings {
    background-color: transparent;
    color: var(--green);
    border: 2px solid var(--green);
}

.cookie-btn-settings:hover {
    background-color: var(--green);
    color: var(--white);
}

/* Legal page styles */
.legal-page {
    padding: 4rem 0;
    background-color: var(--white);
}

.legal-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-subtle);
}

.back-link {
    display: inline-block;
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--green-dark);
}

.legal-header h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.legal-date {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
}

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.8rem;
    color: var(--black);
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    color: var(--black);
    margin: 2rem 0 1rem;
}

.legal-content p {
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
    color: #333;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--black);
    font-weight: 600;
}

.legal-content em {
    color: #666;
}

.text-link {
    color: var(--green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--green-dark);
}

.contact-box {
    background-color: #f8f9fa;
    border-left: 4px solid var(--green);
    padding: 1.5rem;
    margin: 2rem 0;
}

.contact-box p {
    margin: 0.5rem 0;
}

.cookie-settings-btn {
    margin: 1.5rem 0;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
        text-align: center;
    }
    
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-content h2 {
        font-size: 1.5rem;
    }
    
    .legal-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-map iframe {
        min-height: 350px;
    }
}

/* Comparison Table Styles */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.95rem;
}

.comparison-table thead {
    background: var(--green);
    color: white;
}

.comparison-table th {
    padding: 1rem;
    text-align: left;
    border: 1px solid #ddd;
    font-weight: 600;
}

.comparison-table th:not(:first-child) {
    text-align: center;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f5f5f5;
}

.comparison-table td {
    padding: 1rem;
    border: 1px solid #ddd;
}

.comparison-table td:first-child {
    font-weight: 600;
    background: white;
}

.comparison-table td:not(:first-child) {
    text-align: center;
}

.comparison-table .highlight {
    background: #e8f5e9 !important;
    font-weight: 600;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* Search Toggle in Navigation Menu - Option B: Circle Background */
.search-menu-item {
    display: flex;
    align-items: center;
}

.search-toggle {
    background: #f0f4f1;
    border: none;
    color: var(--black);
    cursor: pointer;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    margin-right: 0.5rem;
    width: 36px;
    height: 36px;
}

.search-toggle svg {
    transition: all 0.3s ease;
}

.search-toggle:hover {
    background: var(--green);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(148, 195, 161, 0.3);
}

.search-toggle:hover svg {
    transform: rotate(15deg);
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1001;
    padding: 1.5rem 0;
}

.search-overlay.active {
    transform: translateY(0);
}

.search-form {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border: 2px solid var(--border-subtle);
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(148, 195, 161, 0.1);
}

.search-submit,
.search-close {
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.search-submit:hover,
.search-close:hover {
    background: rgba(148, 195, 161, 0.1);
    color: var(--green);
}

.search-results {
    margin-top: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid var(--border-subtle);
    transition: background 0.2s ease;
}

.search-result-item:hover {
    background: rgba(148, 195, 161, 0.05);
}

.search-result-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.search-result-title {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.search-result-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.search-no-results {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .search-menu-item {
        order: -1;
        width: 100%;
        border-bottom: 1px solid var(--border-subtle);
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .search-toggle {
        width: 100%;
        justify-content: flex-start;
        padding: 0.75rem 1rem;
        border-radius: 4px;
        gap: 0.75rem;
    }
    
    .search-toggle::after {
        content: "Rechercher";
        font-size: 1rem;
    }
    
    .search-form {
        flex-wrap: nowrap;
    }
    
    .search-input {
        font-size: 0.95rem;
        padding: 0.65rem 1rem;
    }
    
    .search-overlay {
        padding: 1rem 0;
    }
}
