@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@700&display=swap');

:root {
    --primary: #D5151D; /* Rosso Italia */
    --primary-hover: #B00F15;
    --accent: #0F702D; /* Verde Italia */
    --accent-hover: #0B5522;
    --secondary: #000000; /* Nero */
    --bg-light: #FFFFFF;
    --bg-alt: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --border-color: #EAEAEA;
    --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    font-weight: 700;
}

h2 { font-size: 2.5rem; margin-bottom: 1rem; text-align: center; text-transform: uppercase; letter-spacing: 1px; }
.subtitle { text-align: center; color: var(--text-muted); font-size: 1.1rem; max-width: 700px; margin: 0 auto 3rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}
.btn-primary { background: var(--primary); color: #FFF; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); }
.btn-secondary { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn-secondary:hover { background: var(--accent); color: #FFF; transform: translateY(-2px); }

.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: #FFF; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #FFF; transform: translateY(-2px); }

/* Header */
.main-header {
    background: #FFF;
    border-bottom: 1px solid var(--border-color);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar {
    max-width: 1200px; margin: auto; padding: 0.2rem 20px;
    display: flex; flex-direction: row; justify-content: space-between; align-items: center;
}
.logo-img { height: 130px; }
.nav-links { display: flex; flex-direction: row; justify-content: flex-end; flex-wrap: wrap; gap: 2rem; list-style: none; width: auto; }
.nav-links a { color: var(--secondary); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: 0.95rem; transition: var(--transition); letter-spacing: 1px; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active {
    color: var(--primary) !important;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
}
.hamburger { display: none; cursor: pointer; position: absolute; top: 1.5rem; right: 20px; z-index: 1001; }
.hamburger span { display: block; width: 30px; height: 3px; background: var(--secondary); margin: 6px auto; transition: all 0.3s ease-in-out; border-radius: 3px; }

/* Hero Split */
.hero-split {
    padding: 6rem 20px;
    background: var(--bg-light);
    display: flex; align-items: center;
    min-height: 80vh;
}
.hero-text-side h1 { font-size: 3.5rem; margin-bottom: 1.5rem; color: var(--secondary); }
.hero-text-side p { font-size: 1.2rem; margin-bottom: 2rem; color: var(--text-muted); }

/* General Sections */
section { padding: 5rem 20px; }
.bg-light { background-color: var(--bg-alt); }
.section-container { max-width: 1200px; margin: auto; }

/* Grids */
.simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Cards */
.card {
    background: #FFF;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-bottom: 3px solid var(--primary); }
.card i { font-size: 2.5rem; color: var(--primary); margin-bottom: 1.5rem; }
.card h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--secondary); }
.card p { color: var(--text-muted); font-size: 0.95rem; }

/* About & CTA split layout */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-layout img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.text-box { padding: 2rem 0; }
.text-box h2 { text-align: left; margin-bottom: 1.5rem; }

/* Stats */
.stats-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; margin-top: 4rem; border-top: 1px solid var(--border-color); padding-top: 4rem; }
.stat-item h4 { font-size: 3rem; color: var(--primary); margin-bottom: 0.5rem; line-height: 1; }
.stat-item p { text-transform: uppercase; font-size: 0.85rem; font-weight: 600; color: var(--secondary); }

/* CTA Block */
.cta-block { background: var(--secondary); color: #FFF; text-align: center; padding: 4rem 2rem; border-radius: 8px; }
.cta-block h2 { color: #FFF; }
.cta-block p { color: #CCC; margin-bottom: 2rem; font-size: 1.1rem; }

/* Contact Forms & Info */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-item { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item i { font-size: 2rem; color: var(--primary); }
.contact-item h4 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.contact-item p, .contact-item a { color: var(--text-dark); text-decoration: none; }
.contact-item a:hover { color: var(--primary); }

.contact-form { background: #FFF; padding: 3rem; border-radius: 8px; box-shadow: 0 5px 30px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.9rem; color: var(--secondary); }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 4px; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }

/* Footer */
.main-footer { background: var(--secondary); color: #FFF; padding: 4rem 20px 2rem; }
.footer-grid { max-width: 1200px; margin: auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-grid h3 { color: #FFF; font-size: 1.8rem; margin-bottom: 1rem; }
.footer-grid p { color: #AAA; font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); width: 100%; text-align: center; color: #777; font-size: 0.85rem; }

@media (max-width: 992px) {
    .navbar { flex-direction: row; justify-content: space-between; padding: 0.2rem 20px; align-items: center; }
    .logo-img { height: 90px; }
    .hamburger { display: block; position: relative; top: 0; right: 0; z-index: 1001; }
    
    /* Off-canvas menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 80vw;
        height: 100vh;
        background: #FFF;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        margin: 0;
        gap: 1.5rem;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #EEE;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .hero-text-side h1 { font-size: 2.5rem; }
    .split-layout, .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
    .stats-container { grid-template-columns: 1fr 1fr; }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* About specifics */
.about-image-wrapper {
    position: relative;
    padding: 1rem;
}
.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 3px solid var(--primary);
    border-radius: 8px;
    z-index: 0;
    transform: translate(-15px, 15px);
    transition: transform 0.5s ease;
}
.about-image-wrapper:hover::before {
    transform: translate(-5px, 5px);
}
.about-image-wrapper img {
    position: relative;
    z-index: 1;
}

/* Modern UI System */
.modern-section {
    padding: 6rem 20px;
}

.modern-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}
.modern-header h2 { font-size: 3rem; margin-bottom: 1rem; }
.modern-header h1 { font-size: 3.5rem; margin-bottom: 1.5rem; color: inherit; font-family: 'Montserrat', sans-serif; line-height: 1.1; }
.modern-header p { font-size: 1.15rem; line-height: 1.6; }

.modern-badge {
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

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

.modern-card {
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.modern-card:hover {
    transform: translateY(-8px);
}
.modern-card i {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    width: 70px; height: 70px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
.modern-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.modern-card p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 0; }

/* Theme: Red (Original Services) */
.theme-red {
    background: var(--primary);
    color: #FFF;
}
.theme-red .modern-header h2, .theme-red .modern-header h1 { color: #FFF; }
.theme-red .modern-header p { color: rgba(255,255,255,0.9); }
.theme-red .modern-badge {
    background: rgba(255,255,255,0.2);
    color: #FFF;
}
.theme-red .modern-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.theme-red .modern-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.4);
}
.theme-red .modern-card i {
    color: #FFF;
    background: rgba(255,255,255,0.1);
}
.theme-red .modern-card h3 { color: #FFF; }
.theme-red .modern-card p { color: rgba(255,255,255,0.8); }

/* Theme: Light */
.theme-light {
    background: var(--bg-light);
    color: var(--text-dark);
}
.theme-light .modern-header h2, .theme-light .modern-header h1 { color: var(--secondary); }
.theme-light .modern-header p { color: var(--text-muted); }
.theme-light .modern-badge {
    background: rgba(15, 112, 45, 0.1);
    color: var(--accent);
    border: 1px solid rgba(15, 112, 45, 0.2);
}
.theme-light .modern-card {
    background: #FFF;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
/* Alternanza colori per le card dei servizi (Rosso / Verde) */
.theme-light .modern-card:nth-child(odd):hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(213, 21, 29, 0.08);
}
.theme-light .modern-card:nth-child(odd) i {
    color: var(--primary);
    background: rgba(213, 21, 29, 0.1);
}
.theme-light .modern-card:nth-child(even):hover {
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(15, 112, 45, 0.08);
}
.theme-light .modern-card:nth-child(even) i {
    color: var(--accent);
    background: rgba(15, 112, 45, 0.1);
}
.theme-light .modern-card h3 { color: var(--secondary); }
.theme-light .modern-card p { color: var(--text-muted); }

/* Theme: Dark */
.theme-dark {
    background: var(--secondary);
    color: #FFF;
}
.theme-dark .modern-header h2, .theme-dark .modern-header h1 { color: #FFF; }
.theme-dark .modern-header p { color: rgba(255,255,255,0.7); }
.theme-dark .modern-badge {
    background: rgba(255,255,255,0.1);
    color: #FFF;
}
.theme-dark .modern-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
}
.theme-dark .modern-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
}
.theme-dark .modern-card i {
    color: #FFF;
    background: rgba(255,255,255,0.1);
}
.theme-dark .modern-card h3 { color: #FFF; }
.theme-dark .modern-card p { color: rgba(255,255,255,0.6); }

/* Layout adjustments */
.modern-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.modern-hero-split .modern-header {
    text-align: left;
    margin: 0;
}
.modern-hero-split .modern-badge {
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .modern-hero-split { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .modern-hero-split .modern-header { text-align: center; margin: 0 auto; }
}
/* Product Cards */
.product-card {
    background: #FFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}
.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.08);
}
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #FFF;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(213, 21, 29, 0.3);
}
.product-badge-accent {
    background: var(--accent) !important;
    box-shadow: 0 4px 10px rgba(15, 112, 45, 0.3) !important;
}
.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}
.product-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: auto;
}

/* No Gap Boxed Grid */
.no-gap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.no-gap-grid .product-card {
    border-radius: 0;
    border: none;
    border-right: 1px solid var(--border-color);
    box-shadow: none;
}
.no-gap-grid .product-card:last-child {
    border-right: none;
}
.no-gap-grid .product-card:hover {
    transform: none;
    background: var(--bg-alt);
    border-color: var(--primary);
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 1200px) {
    .no-gap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .no-gap-grid .product-card {
        border-bottom: 1px solid var(--border-color);
    }
    .no-gap-grid .product-card:nth-child(even) {
        border-right: none;
    }
    .no-gap-grid .product-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .no-gap-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding: 0;
        gap: 1.5rem;
        padding: 0.5rem 0.5rem 2rem 0.5rem;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }
    .no-gap-grid::-webkit-scrollbar { height: 5px; }
    .no-gap-grid::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 5px; }
    .no-gap-grid::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }

    .no-gap-grid .product-card {
        min-width: 85vw;
        scroll-snap-align: center;
        border: 1px solid var(--border-color) !important;
        border-radius: 12px !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
    }

    /* General Mobile Layout Improvements */
    .modern-section { padding: 4rem 15px; }
    section { padding: 3rem 15px; }
    .modern-header h1 { font-size: 2.2rem; }
    .modern-header h2 { font-size: 1.8rem; }
    .modern-header p { font-size: 1rem; }
    h2 { font-size: 2rem; }
    .subtitle { font-size: 1rem; }
    .modern-card { padding: 1.5rem; }
    .btn { padding: 10px 20px; font-size: 0.9rem; }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--text-dark);
    color: #FFF;
    padding: 1rem 20px;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-banner p {
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
    max-width: 800px;
}
.cookie-banner a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}
.cookie-banner button {
    padding: 8px 24px;
    font-size: 0.95rem;
    border-radius: 6px;
    white-space: nowrap;
}

/* Gestione coordinazione Cookie Banner e Pulsante WhatsApp fluttuante */
.cookie-banner.show ~ .whatsapp-float {
    bottom: 90px !important;
}

/* Feedback Visivo Tattile (Stati Attivi al Tocco) */
.btn:active, 
.product-card:active, 
.modern-card:active,
.faq-question:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

@media (max-width: 768px) {
    /* Su mobile, se il cookie banner è visibile, sposta il pulsante di WhatsApp più in alto */
    .cookie-banner.show ~ .whatsapp-float {
        bottom: 130px !important;
    }
}

/* Griglia responsive per i campi del Form di Contatto */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 576px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
}

/* Stili Footer */
.site-footer {
    background-color: #FFF;
    border-top: 1px solid #EEE;
    padding: 4rem 20px 2rem;
    color: #555;
}
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-column {
    flex: 1;
    min-width: 250px;
}
.footer-logo {
    height: 120px;
    margin-bottom: 1.5rem;
}
.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}
.logo-column p {
    max-width: 300px;
}
.footer-column h4 {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2;
}
.footer-contact-list i {
    width: 25px;
    color: var(--primary);
}
.footer-contact-list a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-contact-list a:hover {
    color: var(--primary);
}
.footer-bottom {
    border-top: 1px solid #EEE;
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}
.footer-bottom p {
    margin: 0;
    color: #999;
}
.footer-links a {
    color: #999;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: var(--primary);
}

/* Centratura Footer su Mobile */
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 15px 1.5rem;
    }
    .footer-columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
    }
    .logo-column p {
        margin: 0 auto;
    }
    .footer-logo {
        display: block;
        margin: 0 auto 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
    .footer-links a {
        margin: 0 10px;
    }
}

/* Stili per il Logo all'interno della Hero */
.hero-logo-wrapper {
    margin-bottom: 2rem;
    display: inline-block;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.theme-light .hero-logo-wrapper {
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    backdrop-filter: none;
}
.hero-logo {
    height: 120px;
    display: block;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .hero-logo-wrapper {
        margin-bottom: 1.5rem;
        padding: 8px;
    }
    .hero-logo {
        height: 80px;
    }
}

/* Ottimizzazione Hero con Sfondo Bianco */
@media (max-width: 992px) {
    #hero {
        background-position: 75% center !important;
    }
    #hero .modern-header {
        background: rgba(255, 255, 255, 0.88);
        padding: 2.5rem 2rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        text-align: center !important;
        margin: 0 auto !important;
    }
    #hero .modern-header div {
        justify-content: center !important;
    }
}
