:root {
  --primary-color: #C3B091;      /* Beige Scuro / Khaki */
  --secondary-color: #8A795D;    /* Marrone-Grigio */
  --accent-color: #F5F5DC;       /* Beige Chiaro */
  --background-color: #FAF3E0;   /* Lino / Sfondo Beige Chiarissimo */
  --background-color-light: #ffffff; /* Sfondo Bianco */
  --background-color-dark: #E8D5C4;  /* Pergamena */
  --text-color: #3C362A;         /* Marrone Scuro Intenso */
  --text-color-light: #ffffff;   /* Testo chiaro */
  --white: #ffffff;
  --black: #000000;
}

/* 
* Template Landing Page - Hero Section Styles
* Mobile-first approach with responsive design
*/

/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
}

/* Hero Section */


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('images/hero-fallback.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Video Background Container */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Immagine di fallback */
.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Video styles */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

/* Desktop video - visibile solo su desktop */
.desktop-video {
    display: block;
}

/* Mobile video - nascosto su desktop */
.mobile-video {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
}

/* Tipografia */
h1 {
    font-size: 2.2rem; /* Mobile: 2.2rem */
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h2 {
    font-size: 1.2rem; /* Mobile: 1.2rem */
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Bottone CTA */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.cta-button:hover, .cta-button:focus {
    background-color: #0056b3; /* Scurimento del blu primario */
}

/* CTA sticky su mobile */
.cta-sticky {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

/* Media queries per responsive design */
@media screen and (min-width: 768px) {
    .hero-content {
        max-width: 80%;
    }
    
    h1 {
        font-size: 3.2rem; /* Desktop: 3.2rem */
    }
    
    h2 {
        font-size: 1.6rem; /* Desktop: 1.6rem */
    }
    
    /* Disattiva sticky CTA su desktop */
    .cta-sticky {
        position: static;
        transform: none;
        width: auto;
        box-shadow: none;
    }
}

/* Video responsive */
@media screen and (max-width: 767px) {
    .desktop-video {
        display: none;
    }
    
    .mobile-video {
        display: block;
    }
}

/* Supporto per preferenze di riduzione movimento */
@media (prefers-reduced-motion: reduce) {
    #heroVideo {
        display: none;
    }
    
    /* Mostra l'immagine fallback quando il video è nascosto */
    .hero-video-container::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('images/hero-fallback.jpg');
        background-size: cover;
        background-position: center;
        z-index: 0;
    }
}

/* 
* Sezione Chi Siamo
* Crea un'atmosfera calda, accogliente e familiare
*/

/* Layout base e contenitore */
.about-section {
    background-color: var(--background-color); /* Sfondo azzurro molto chiaro */
    padding: 40px 0; /* Padding verticale su mobile */
    color: var(--text-color); /* Grigio carbone per il testo */
}

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

/* Contenitore flessibile per layout responsive */
.about-content {
    display: flex;
    flex-direction: column; /* Stacked su mobile */
    gap: 2rem;
}

/* Stili testo */
.about-text h2 {
    font-family: "Merriweather", serif;
    color: var(--secondary-color); /* Verde oliva scuro */
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.about-text p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Stile citazione callout */
.quote-callout {
    background-color: var(--background-color-light);
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    font-family: "Merriweather", serif;
    font-size: 1.1rem;
}

/* Media query per tablet e desktop */
@media screen and (min-width: 768px) {
    .about-section {
        padding: 80px 0; /* Padding verticale più grande su desktop */
    }
    
    .about-content {
        flex-direction: row; /* Layout a due colonne su desktop */
        align-items: center;
    }
    
    .about-text {
        flex: 1;
        padding-right: 2rem;
    }
    
    .about-image {
        flex: 1;
    }
    
    .about-text p {
        font-size: 1.2rem; /* Testo più grande su desktop */
    }
    
    .about-text h2 {
        font-size: 2.4rem; /* Titolo più grande su desktop */
    }
}

/* 
* Sezione Servizi Offerti
* Stile innovativo, originale e focalizzato sul testo
*/

/* Background pattern decorativo per la sezione */
.services-section {
    background-color: var(--background-color-light);
    padding: 70px 0 50px; /* Più spazio sopra */
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(136, 176, 75, 0.03) 25%, transparent 25%, transparent 50%, rgba(136, 176, 75, 0.03) 50%, rgba(136, 176, 75, 0.03) 75%, transparent 75%);
    background-size: 60px 60px;
    opacity: 0.8;
    z-index: 0;
}

/* Contenitore con sfondo trasparente per garantire la leggibilità del testo */
.services-section .container {
    position: relative;
    z-index: 1;
}

/* Intestazione con stile letterpress sottile */
.services-header {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 850px;
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid #88B04B;
}

.services-header h2 {
    font-family: "Merriweather", serif;
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.8), -1px -1px 0 rgba(0, 0, 0, 0.05); /* Effetto letterpress sottile */
}

.services-header p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color);
    font-weight: 400;
    max-width: 700px;
}

/* Layout griglia asimmetrica per un aspetto più dinamico */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
    margin-bottom: 3.5rem;
}

/* Card servizi ripensate completamente */
.service-card {
    background-color: transparent;
    padding: 0;
    box-shadow: none;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: start;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
}

/* Contenitore colore solo dietro l'icona */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: var(--background-color);
    border-radius: 12px;
    z-index: -1;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateX(6px);
}

.service-card:hover::before {
    background-color: var(--background-color-dark);
    box-shadow: 0 6px 12px rgba(85, 107, 47, 0.1);
    transform: scale(1.1) rotate(3deg);
}

/* Icone servizi - Design migliorato e professionale */
.service-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #9A8A7A 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(138, 121, 93, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.service-icon-wrapper:hover::before {
    left: 100%;
}

.service-icon {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    z-index: 2;
    position: relative;
}

.service-card:hover .service-icon-wrapper {
    box-shadow: 0 15px 35px rgba(138, 121, 93, 0.25);
    background: linear-gradient(135deg, #9A8A7A 0%, #B8A898 100%);
}

.service-card:hover .service-icon {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Contenitore testo */
.service-card-content {
    display: flex;
    flex-direction: column;
}

/* Titoli con stile più elegante e distintivo */
.service-card h3 {
    font-family: "Merriweather", serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 0;
    letter-spacing: -0.01em;
}

/* Rimuoviamo la linea dopo il titolo per un look più pulito */
.service-card h3::after {
    display: none;
}

/* Testo più grande e leggibile */
.service-card p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-top: 0.3rem;
}

/* CTA Section */
.services-cta {
    background-color: var(--background-color); /* Sfondo azzurro molto chiaro */
    padding: 60px 40px;
    border-radius: 0;
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(85, 107, 47, 0.1);
    border-bottom: 1px solid rgba(85, 107, 47, 0.1);
    box-shadow: none;
}

.services-cta h3 {
    font-family: "Merriweather", serif;
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.services-cta p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color);
}

.location-highlight {
    display: block;
    margin-top: 1.2rem;
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.location-highlight strong {
    font-weight: 700;
    font-size: 1.05rem;
}

/* Bottoni CTA */
.services-cta .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 340px;
    margin: 0 auto;
}

.services-cta .btn-call {
    background-color: var(--secondary-color);
    border-radius: 6px;
    box-shadow: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 20px;
    letter-spacing: normal;
}

.services-cta .btn-call:hover {
    background-color: #465825;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(85, 107, 47, 0.2);
}

.services-cta .btn-call::before {
    content: none;
}

.services-cta .btn-call i {
    margin-right: 8px;
}

.services-cta .btn-outline {
    border: 1px solid #556B2F;
    color: var(--secondary-color);
    background-color: transparent;
    border-radius: 6px;
    font-size: 1rem;
    padding: 14px 20px;
    box-shadow: none;
}

.services-cta .btn-outline:hover {
    background-color: rgba(85, 107, 47, 0.05);
    transform: translateY(-2px);
}

.contact-info .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: 400px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-call {
    background-color: var(--secondary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(85, 107, 47, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    padding: 18px 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50px;
    text-align: center;
    width: 100%;
    font-weight: 600;
    z-index: 1;
    letter-spacing: 0.5px;
}

/* Icone per pulsanti senza icone HTML */
.btn-call:not(:has(i))::before {
    content: '\f095'; /* Telefono FontAwesome */
    font-family: 'Font Awesome 5 Free';
    margin-right: 10px;
}

/* Rimuovo il contenuto ::before dai pulsanti che hanno icone HTML */
.btn-call i {
    margin-right: 8px;
}

.btn-whatsapp i {
    margin-right: 8px;
}

.btn-call::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    z-index: -1;
}

.btn-call:hover {
    background-color: #64802e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.btn-call:hover::after {
    animation: btn-shine 1.5s ease-in-out;
}

@keyframes btn-shine {
    100% {
        transform: translateX(100%);
    }
}

.btn-call:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
    transition: all 0.1s ease;
}

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

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 18px 24px;
    font-size: 1.1rem;
    position: relative;
    font-weight: 600;
    border-radius: 50px;
    text-align: center;
    width: 100%;
    line-height: 1.3;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
    letter-spacing: 0.5px;
}

/* Icone per pulsanti senza icone HTML */
.btn-whatsapp:not(:has(i))::before {
    content: '\f232'; /* WhatsApp Icon FontAwesome */
    font-family: 'Font Awesome 5 Brands';
    margin-right: 10px;
}

.btn-whatsapp::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    z-index: -1;
}

.btn-whatsapp:hover {
    background-color: #1ebf5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover::after {
    animation: btn-shine 1.5s ease-in-out;
}

.btn-whatsapp:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
    transition: all 0.1s ease;
}

/* Rimosso selettore duplicato */

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.btn-whatsapp:hover {
    background-color: #1ebf5a;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:active::after {
    animation: ripple 0.6s ease-out;
}

.btn-whatsapp:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.4);
    transition: all 0.1s ease;
}

/* CTA sticky su mobile */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    justify-content: center;
}

/* Media query per tablet */
@media screen and (min-width: 768px) {
    .services-section {
        padding: 65px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* Due colonne su tablet */
        gap: 2rem;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: row;
        max-width: 450px;
    }
    
    .mobile-cta {
        display: none !important; /* Nascondi su tablet e desktop */
    }
}

/* Media query per desktop */
@media screen and (min-width: 1024px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr); /* Tre colonne su desktop */
    }
    
    .services-header h2 {
        font-size: 2.4rem;
    }
    
    .services-header p {
        font-size: 1.2rem;
    }
    
    .services-cta {
        padding: 50px;
    }
}

/* Media query per mobile - CTA sticky */
@media screen and (max-width: 767px) {
    .mobile-cta {
        display: flex;
    }
    
    body {
        padding-bottom: 60px; /* Spazio per la CTA sticky */
    }
}

/* 
* Sezione Testimonianze - Dicono di noi
* Stile caldo, autentico ed emozionale
*/

.testimonials-section {
    background-color: var(--background-color); /* Verde molto chiaro */
    padding: 70px 0 50px;
    position: relative;
}

/* Intestazione sezione */
.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-header h2 {
    font-family: "Merriweather", serif;
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.testimonials-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.testimonials-header p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Griglia testimonianze */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

/* Card testimonianze */
.testimonial-card {
    background-color: var(--background-color-light);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

/* Icona citazione */
.quote-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.2rem;
    opacity: 0.85;
}

/* Testo testimonianza */
.testimonial-card p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Meta informazioni (autore e avatar) */
.testimonial-meta {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 2px solid rgba(136, 176, 75, 0.3);
    background-color: var(--background-color-dark);
}

.testimonial-author {
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* CTA Finale */
.testimonial-cta {
    background-color: var(--background-color-light);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.about-image-stack {
    position: relative;
    width: 45%;
    min-height: 400px; /* Altezza minima per garantire visibilità */
    margin-left: 2rem;
}

.about-img {
    position: absolute;
    width: 80%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.05);
    z-index: 10;
}

.about-img-1 {
    top: 0;
    left: 0;
    z-index: 1;
}

.about-img-2 {
    bottom: 0;
    right: 0;
    z-index: 2;
}

/* Media query per mobile: semplifico la sezione Chi Siamo */
@media screen and (max-width: 767px) {
    .about-content {
        flex-direction: column;
    }

    .about-image-stack {
        width: 100%;
        margin: 2rem 0 0 0;
        min-height: auto;
    }

    .about-img {
        position: static;
        width: 90%;
        margin: 0 auto;
        display: block;
    }

    .about-img-2 {
        display: none; /* Nascondo la seconda immagine su mobile */
    }
}

.testimonial-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #88B04B, #556B2F);
    border-radius: 16px 16px 0 0;
}

.testimonial-cta h3 {
    font-family: "Merriweather", serif;
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.testimonial-cta p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 1.8rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Media query per tablet */
@media screen and (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-header h2 {
        font-size: 2.4rem;
    }
    
    .testimonial-cta {
        padding: 3rem;
    }
}

/* Media query per desktop */
@media screen and (min-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* 
* Sezione Contatti
* Layout elegante, accogliente e informativo
*/

.contact-section {
    background-color: var(--background-color); /* Verde chiaro molto tenue */
    padding: 70px 0 60px;
    position: relative;
}

/* Wrapper contatti a due colonne */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Contenitore info contatti */
.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-family: "Merriweather", serif;
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.contact-info p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Lista contatti */
.contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.contact-list li {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-icon {
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color) !important;
    margin-right: 12px;
    font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands', sans-serif !important;
}

/* Stile speciale per l'icona WhatsApp - solo colore verde */
.contact-icon.fab.fa-whatsapp {
    color: #25D366 !important;
}









/* Assicurarsi che le icone Font Awesome si vedano */
.contact-list li i.contact-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands', sans-serif !important;
}



.contact-list li a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-list li a:hover {
    color: #88B04B;
    text-decoration: underline;
}

.whatsapp-link {
    color: #25D366 !important;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(37, 211, 102, 0.15) 100%);
    padding: 6px 12px;
    border-radius: 8px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(37, 211, 102, 0.2);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.1);
}

.whatsapp-link:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.25) 100%);
    color: #1da851 !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.3);
}

/* Foto contatti */
.contact-photo {
    flex: 1;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.contact-photo:hover img {
    transform: scale(1.03);
}

.contact-photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    padding: 20px;
    box-sizing: border-box;
}

.contact-photo-caption p {
    color: #fff;
    margin: 0;
    font-family: "Merriweather", serif;
    font-size: 1.2rem;
    font-style: italic;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Modulo contatti opzionale (nascosto di default) */
.contact-form {
    display: none; /* Nascosto per impostazione predefinita */
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 500px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid rgba(85, 107, 47, 0.3);
    border-radius: 8px;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #88B04B;
    box-shadow: 0 0 0 2px rgba(136, 176, 75, 0.2);
}

/* Footer Style */
.site-footer {
    background-color: var(--background-color-dark);
    padding: 60px 0 20px;
    color: #555;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-info h3 {
    font-family: "Merriweather", serif;
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.footer-info p {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 400px;
}

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

.footer-col h4 {
    font-family: "Merriweather", serif;
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

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

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

.footer-col ul li a {
    color: #555;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #88B04B;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(85, 107, 47, 0.2);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.footer-bottom p {
    font-family: "Open Sans", sans-serif;
    font-size: 0.9rem;
    color: #777;
}

.footer-credits a {
    color: var(--secondary-color);
    text-decoration: none;
}

.footer-credits a:hover {
    text-decoration: underline;
}

/* Media query per tablet e desktop */
@media screen and (min-width: 768px) {
    .contact-wrapper {
        flex-direction: row;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-links {
        flex-direction: row;
        gap: 4rem;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .whatsapp-text {
        display: inline-block;
    }
}

/* Pulsante WhatsApp Flottante - Design migliorato */
.whatsapp-float {
    position: fixed;
    width: auto;
    height: auto;
    padding: 16px 24px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25D366 0%, #1ebf5a 100%);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);

    backdrop-filter: blur(10px);
}



.whatsapp-float:hover {
    background-color: #1ebf5a;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
}

.whatsapp-icon {
    font-size: 1.8rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
    margin-right: 8px;
}

.whatsapp-text {
    display: none;
}

@media screen and (max-width: 480px) {
    .whatsapp-float {
        padding: 10px;
        border-radius: 50%;
        right: 20px;
        bottom: 20px;
    }
}

/* 
* Sezione Galleria Fotografica
* Stile per una galleria semplice e responsive 
*/

.gallery-section {
    padding: 70px 0;
    background-color: #f9f9f9;
    position: relative;
}

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

.gallery-header h2 {
    font-family: "Merriweather", serif;
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.gallery-header p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 0;
    padding-bottom: 70%;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--background-color-light);
}

.gallery-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    /* Rimossa animazione scale */
}

/* Media query per tablet (2 colonne) */
@media screen and (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Media query per desktop (3 colonne) */
@media screen and (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .gallery-header h2 {
        font-size: 2.5rem;
    }
}

/* Fine della sezione galleria */

/* Lightbox per la galleria fotografica */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 10px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('images/hero-fallback.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.lightbox.active .lightbox-image {
    transform: scale(1);
    opacity: 1;
}

.lightbox-caption {
    position: absolute;
    bottom: -40px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    padding: 10px 0;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox.active .lightbox-caption {
    opacity: 1;
    transform: translateY(0);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    cursor: pointer;
    position: absolute;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: bold;
    transition: 0.3s ease;
    z-index: 10;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0.7;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    opacity: 1;
    background-color: rgba(0, 123, 255, 0.8);
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-prev:hover, .lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Assicurarsi che le immagini della galleria abbiano il cursore a puntatore */
.gallery-item {
    cursor: pointer;
}

/* Responsive per mobile */
@media screen and (max-width: 768px) {
    .lightbox-content {
        width: 95%;
    }
    
    .lightbox-close, .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-caption {
        font-size: 0.9rem;
    }
}

/* 
* Sezione Contatti - Segue alla sezione FAQ 
*/

/* 
* Sezione Vieni a Conoscerci
* Stile per la sezione visita e giornata tipo
*/

.visit-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.visit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.visit-section .container {
    position: relative;
    z-index: 2;
}

.visit-header {
    text-align: center;
    margin-bottom: 60px;
}

.visit-header h2 {
    font-family: "Merriweather", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.visit-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.visit-content {
    display: grid;
    gap: 80px;
    margin-bottom: 60px;
}

/* Timeline della giornata tipo */
.daily-routine h3 {
    font-family: "Merriweather", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.daily-routine > p {
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.routine-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.routine-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.routine-time {
    font-family: "Merriweather", serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: linear-gradient(135deg, var(--secondary-color) 0%, #9A8A7A 100%);
    color: white;
    padding: 12px 15px;
    border-radius: 10px;
    text-align: center;
    align-self: start;
}

.routine-content h4 {
    font-family: "Merriweather", serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.routine-content h4 i {
    color: #88B04B;
    font-size: 1.2rem;
}

.routine-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* Opzioni di visita */
.visit-options h3 {
    font-family: "Merriweather", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.visit-options > p {
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.visit-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.visit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.visit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #88B04B 100%);
}

.visit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.visit-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #9A8A7A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.visit-card:hover .visit-card-icon {
    transform: scale(1.1);
}

.visit-card-icon i {
    font-size: 2rem;
    color: white;
}

.visit-card h4 {
    font-family: "Merriweather", serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.visit-card p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.visit-card .btn {
    margin-top: auto;
}

/* CTA finale */
.visit-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #9A8A7A 100%);
    color: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(138, 121, 93, 0.3);
}

.visit-cta h3 {
    font-family: "Merriweather", serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.visit-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.visit-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.visit-cta .btn {
    min-width: 200px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .visit-header h2 {
        font-size: 2rem;
    }
    
    .visit-header p {
        font-size: 1.1rem;
    }
    
    .routine-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .routine-time {
        align-self: center;
        max-width: 150px;
        margin: 0 auto;
    }
    
    .visit-cards {
        display: none;
    }
    
    .visit-card {
        padding: 30px 25px;
    }
    
    .visit-cta {
        padding: 40px 25px;
    }
    
    .visit-cta h3 {
        font-size: 1.8rem;
    }
    
    .visit-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .visit-cta .btn {
        min-width: 250px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .visit-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* 
* Pagine Legali
* Stile per Privacy Policy, Cookie Policy e Termini e Condizioni
*/

.legal-header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #9A8A7A 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.legal-header h1 {
    font-family: "Merriweather", serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
}

.back-link i {
    margin-right: 8px;
}

.legal-content {
    padding: 60px 0;
    background-color: #f9f9f9;
    min-height: 70vh;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.legal-text h2 {
    font-family: "Merriweather", serif;
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-family: "Merriweather", serif;
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text p {
    font-family: "Open Sans", sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text li {
    font-family: "Open Sans", sans-serif;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 8px;
}

.legal-text a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-text a:hover {
    color: #88B04B;
    text-decoration: underline;
}

.legal-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
}

.legal-footer p {
    margin-bottom: 15px;
    font-family: "Open Sans", sans-serif;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.legal-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-text {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .legal-text h2 {
        font-size: 1.6rem;
    }
    
    .legal-text h3 {
        font-size: 1.3rem;
    }
    
    .legal-links {
        gap: 20px;
    }
}

