/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
}

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

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

/* Navigation - Split Style */
.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

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

.nav-right a {
    font-weight: 500;
    color: #4a5568;
    position: relative;
}

.nav-right a:hover {
    color: #667eea;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

.nav-right a:hover::after {
    width: 100%;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-content,
.hero-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 8%;
}

.hero-content {
    background: #f7fafc;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #4a5568;
    max-width: 500px;
}

.hero-visual {
    background: #667eea;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

/* CTA Buttons */
.cta-primary,
.cta-secondary,
.cta-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: #667eea;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.cta-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.cta-secondary:hover {
    background: #667eea;
    color: #ffffff;
}

.cta-primary-large {
    background: #667eea;
    color: #ffffff;
    padding: 1.3rem 3rem;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-primary-large:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* Intro Split Section */
.intro-split {
    display: flex;
    align-items: stretch;
}

.intro-content,
.intro-visual {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-visual {
    background: #f093fb;
}

.intro-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #667eea;
    margin-bottom: 1rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    line-height: 1.3;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.8;
}

/* Reverse Layout */
.reverse {
    flex-direction: row-reverse;
}

/* Services Preview Section */
.servizi-preview {
    padding: 6rem 5%;
    background: #ffffff;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-centered h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-header-centered p {
    font-size: 1.2rem;
    color: #718096;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-card p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.service-cta {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: #f7fafc;
    color: #667eea;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #667eea;
    color: #ffffff;
}

/* Testimonianze Split */
.testimonianze-split {
    display: flex;
    align-items: stretch;
}

.testimonianza-content,
.testimonianza-visual {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonianza-content {
    background: #f7fafc;
}

.testimonianza-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

blockquote {
    border-left: 4px solid #667eea;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.8;
}

cite {
    font-style: normal;
    font-weight: 600;
    color: #667eea;
    font-size: 1rem;
}

.testimonianza-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* Metodo Split */
.metodo-split {
    display: flex;
    align-items: stretch;
}

.metodo-content,
.metodo-visual {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metodo-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.step {
    margin-bottom: 2rem;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.step p {
    color: #4a5568;
    line-height: 1.7;
}

/* Valori Split */
.valori-split {
    display: flex;
    align-items: stretch;
}

.valori-content,
.valori-visual {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.valori-content {
    background: #f7fafc;
}

.valori-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.valori-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.valori-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* Form Split */
.form-split {
    display: flex;
    align-items: stretch;
}

.form-content,
.form-visual {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content {
    background: #ffffff;
}

.form-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-content > p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2.5rem;
}

.form-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-submit {
    padding: 1.2rem 2.5rem;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

/* FAQ Split */
.faq-split {
    display: flex;
    align-items: stretch;
}

.faq-content,
.faq-visual {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.faq-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

.faq-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* CTA Finale */
.cta-finale {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: #ffffff;
}

.cta-finale h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-finale p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Footer */
.footer-split {
    background: #1a202c;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p,
.footer-col a {
    color: #cbd5e0;
    font-size: 0.95rem;
    line-height: 2;
    display: block;
}

.footer-col a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
    color: #cbd5e0;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-content a {
    color: #667eea;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #667eea;
    color: #ffffff;
}

.btn-accept:hover {
    background: #5568d3;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #4a5568;
}

.btn-reject:hover {
    background: #4a5568;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1500;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: #667eea;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.5);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #5568d3;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 50vh;
    align-items: stretch;
}

.page-hero-content,
.page-hero-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 8%;
}

.page-hero-content {
    background: #f7fafc;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #4a5568;
}

.page-hero-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

/* About Page Specific */
.about-intro-split {
    display: flex;
    align-items: stretch;
}

.about-intro-content,
.about-intro-visual {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.valori-grid {
    padding: 6rem 5%;
    background: #f7fafc;
}

.valori-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.valore-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.valore-icon {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.valore-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.valore-card p {
    color: #4a5568;
    line-height: 1.7;
}

.team-split,
.filosofia-split,
.numeri-split {
    display: flex;
    align-items: stretch;
}

.team-content,
.team-visual,
.filosofia-content,
.filosofia-visual,
.numeri-content,
.numeri-visual {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-image,
.filosofia-image,
.numeri-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.team-content h2,
.filosofia-content h2,
.numeri-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.team-content p,
.filosofia-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.numeri-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.numero-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.numero {
    font-size: 3.5rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.numero-item p {
    font-size: 1.1rem;
    color: #4a5568;
}

/* Services Page Specific */
.service-detail-split {
    display: flex;
    align-items: stretch;
}

.service-detail-content,
.service-detail-visual {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content {
    background: #ffffff;
}

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.service-includes li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
    line-height: 1.6;
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-detail-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.service-extra-split {
    display: flex;
    align-items: stretch;
    background: #f7fafc;
}

.service-extra-content,
.service-extra-visual {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-extra-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.service-extra-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.extra-list li {
    padding: 1rem 0;
    color: #4a5568;
    line-height: 1.7;
    border-bottom: 1px solid #e2e8f0;
}

.extra-list li strong {
    color: #1a202c;
}

.service-extra-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.come-funziona {
    padding: 6rem 5%;
    background: #ffffff;
}

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

.step-card {
    flex: 1 1 calc(25% - 2rem);
    min-width: 220px;
    padding: 2rem;
    background: #f7fafc;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.step-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Contact Page Specific */
.contact-info-split,
.contact-cta-split,
.domande-split {
    display: flex;
    align-items: stretch;
}

.contact-info-content,
.contact-info-visual,
.contact-cta-content,
.contact-cta-visual,
.domande-content,
.domande-visual {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-content h2,
.contact-cta-content h2,
.domande-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.info-block p {
    color: #4a5568;
    line-height: 1.7;
}

.info-block a {
    color: #667eea;
    text-decoration: underline;
}

.contact-info-image,
.contact-cta-image,
.domande-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.contact-cta-content p,
.domande-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.mappa-info {
    padding: 6rem 5%;
    background: #f7fafc;
}

.mappa-content {
    max-width: 1200px;
    margin: 0 auto;
}

.mappa-placeholder {
    border-radius: 12px;
    margin-bottom: 2rem;
}

.mappa-directions {
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
}

.mappa-directions h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.mappa-directions p {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Thanks Page Specific */
.thanks-split {
    display: flex;
    min-height: 70vh;
    align-items: stretch;
}

.thanks-content,
.thanks-visual {
    flex: 1;
    padding: 5rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thanks-content {
    background: #f7fafc;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #48bb78;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-info {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-steps {
    padding-left: 1.5rem;
}

.thanks-steps li {
    color: #4a5568;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-service {
    background: #e6fffa;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: #234e52;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.thanks-image {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.thanks-extra {
    padding: 5rem 8%;
    background: #ffffff;
}

.thanks-extra-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-extra-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.thanks-extra-content p {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.thanks-suggestions {
    list-style: none;
    padding-left: 0;
}

.thanks-suggestions li {
    padding: 1rem 0;
    color: #4a5568;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
}

.thanks-suggestions a {
    color: #667eea;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 4rem 5%;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.legal-date {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #4a5568;
}

.legal-container h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.legal-container p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-container a {
    color: #667eea;
    text-decoration: underline;
}

.legal-container strong {
    color: #2d3748;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .testimonianze-split,
    .metodo-split,
    .valori-split,
    .form-split,
    .faq-split,
    .page-hero-split,
    .about-intro-split,
    .team-split,
    .filosofia-split,
    .numeri-split,
    .service-detail-split,
    .service-extra-split,
    .contact-info-split,
    .contact-cta-split,
    .domande-split,
    .thanks-split {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .intro-content h2,
    .testimonianza-content h2,
    .metodo-content h2,
    .valori-content h2,
    .form-content h2,
    .faq-content h2,
    .team-content h2,
    .filosofia-content h2,
    .numeri-content h2,
    .service-detail-content h2,
    .service-extra-content h2,
    .contact-info-content h2,
    .contact-cta-content h2,
    .domande-content h2 {
        font-size: 2rem;
    }

    .section-header-centered h2 {
        font-size: 2.2rem;
    }

    .cta-finale h2 {
        font-size: 2.3rem;
    }

    .hero-content,
    .hero-visual,
    .intro-content,
    .intro-visual,
    .testimonianza-content,
    .testimonianza-visual,
    .metodo-content,
    .metodo-visual,
    .valori-content,
    .valori-visual,
    .form-content,
    .form-visual,
    .faq-content,
    .faq-visual,
    .page-hero-content,
    .page-hero-visual,
    .about-intro-content,
    .about-intro-visual,
    .team-content,
    .team-visual,
    .filosofia-content,
    .filosofia-visual,
    .numeri-content,
    .numeri-visual,
    .service-detail-content,
    .service-detail-visual,
    .service-extra-content,
    .service-extra-visual,
    .contact-info-content,
    .contact-info-visual,
    .contact-cta-content,
    .contact-cta-visual,
    .domande-content,
    .domande-visual,
    .thanks-content,
    .thanks-visual {
        padding: 3rem 5%;
    }

    .hero-image,
    .intro-image,
    .testimonianza-image,
    .metodo-image,
    .valori-image,
    .form-image,
    .faq-image,
    .page-hero-image,
    .about-intro-image,
    .team-image,
    .filosofia-image,
    .numeri-image,
    .service-detail-image,
    .service-extra-image,
    .contact-info-image,
    .contact-cta-image,
    .domande-image,
    .thanks-image {
        min-height: 300px;
    }

    .nav-right {
        gap: 1.2rem;
    }

    .nav-right a {
        font-size: 0.95rem;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .thanks-actions .cta-primary,
    .thanks-actions .cta-secondary {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .split-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    .nav-right {
        width: 100%;
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

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