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

/* ==========================================================================
   1. VARIABILI GLOBALI E RESET DI BASE - NEW CONTEMPORARY DESIGN
   ========================================================================== */
:root {
    /* Nuova palette colori: Giallo senape e Blu */
    --primary: #E4B429;          /* Giallo senape principale */
    --primary-dark: #D4A017;     /* Giallo senape più scuro */
    --primary-light: #F2C84B;    /* Giallo senape più chiaro */
    --secondary: #2E5BBA;        /* Blu principale */
    --secondary-dark: #1E4A9E;   /* Blu più scuro */
    --secondary-light: #4A7BD9;  /* Blu più chiaro */
    --accent: #FF6B6B;           /* Accento rosso corallo */
    
    /* Colori neutri contemporanei */
    --dark: #2C3E50;             /* Blu scuro per testi */
    --gray: #7F8C8D;             /* Grigio medio */
    --light: #F8F9FA;            /* Grigio chiaro */
    --gray-light: #ECF0F1;       /* Grigio molto chiaro */
    --white: #FFFFFF;
    --success: #27AE60;
    --warning: #F39C12;
    --danger: #E74C3C;
    
    /* Gradient contemporanei */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 70%, var(--primary) 100%);
    
    /* Spacing e misure */
    --navbar-height: 80px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;
    --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --box-shadow-sm: 0 5px 20px rgba(0, 0, 0, 0.08);
    --box-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    
    /* RGB values per rgba */
    --primary-rgb: 228, 180, 41;
    --secondary-rgb: 46, 91, 186;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
    padding-top: var(--navbar-height);
    margin: 0;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   2. NAVBAR - CONTEMPORARY DESIGN
   ========================================================================== */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--secondary) !important;
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.navbar-brand:hover::after {
    width: 100%;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem !important;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    white-space: nowrap;
    color: var(--dark) !important;
    border-radius: var(--border-radius-sm);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--secondary) !important;
    background-color: rgba(46, 91, 186, 0.08);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: var(--gradient-secondary);
    font-weight: 600;
    box-shadow: var(--box-shadow-sm);
}

/* Dropdown Menu Navbar */
.dropdown-menu {
    border-radius: 0 !important;
    border: 1px solid var(--gray-light) !important;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    margin-top: 0.125rem;
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-weight: 400;
    font-size: 0.9rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    color: var(--dark);
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-menu .dropdown-item.active {
    background-color: var(--primary) !important;
    color: white !important;
}

.dropdown-toggle::after {
    margin-left: 0.5em;
}

@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
    }
}

/* Stili per navbar collassata (mobile) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        margin-top: 0.5rem;
        border-top: 1px solid var(--gray-light);
        box-shadow: 0 5px 10px rgba(0,0,0,0.05);
        padding-bottom: 0.5rem;
    }
    .navbar-nav { width: 100%; }
    .navbar-nav .nav-item { width: 100%; border-bottom: 1px solid var(--gray-light); }
    .navbar-nav .nav-item:last-child { border-bottom: none; }
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0;
        width: 100%;
    }
    .navbar-nav .dropdown-menu {
        background-color: var(--light) !important;
        box-shadow: none !important;
        border: none !important;
        padding-left: 1rem !important;
        width: 100% !important;
        margin-top: 0 !important;
    }
    .navbar-nav .dropdown-item {
        color: var(--dark) !important;
        padding: 0.6rem 1rem !important;
        border-bottom: 1px solid var(--gray-light) !important;
    }
    .navbar-nav .dropdown-item:last-child { border-bottom: none !important; }
    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item:focus {
        background-color: var(--gray-light) !important;
        color: var(--primary) !important;
    }
    .navbar-nav .dropdown-toggle::after {
        display: inline-block !important;
        float: right;
        margin-top: 0.25em;
    }
}


/* ==========================================================================
   3. BOTTONI - CONTEMPORARY DESIGN
   ========================================================================== */
.btn {
    border-radius: var(--border-radius) !important;
    letter-spacing: 0.3px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    border-width: 2px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::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.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary:not(.blue-form .btn-primary) {
    background: var(--gradient-primary) !important;
    border: 2px solid var(--primary) !important;
    color: var(--white) !important;
    box-shadow: var(--box-shadow-sm);
}

.btn-primary:not(.blue-form .btn-primary):hover,
.btn-primary:not(.blue-form .btn-primary):focus {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
    border-color: var(--primary-dark) !important;
}

.btn-secondary {
    background: var(--gradient-secondary) !important;
    border: 2px solid var(--secondary) !important;
    color: var(--white) !important;
    box-shadow: var(--box-shadow-sm);
}

.btn-secondary:hover,
.btn-secondary:focus {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
    border-color: var(--secondary-dark) !important;
}

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

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

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

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
    background: var(--gradient-secondary) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-light {
    background-color: var(--white) !important;
    border: 2px solid var(--gray-light) !important;
    color: var(--secondary) !important;
    box-shadow: var(--box-shadow-sm);
}

.btn-light:hover,
.btn-light:focus {
    background-color: var(--light) !important;
    border-color: var(--secondary) !important;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

/* ==========================================================================
   4. SEZIONI GENERICHE - CONTEMPORARY LAYOUT
   ========================================================================== */
.section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section.bg-light { 
    background: linear-gradient(135deg, #F8F9FA 0%, #ECF0F1 100%); 
}

.section.bg-primary { 
    background: var(--gradient-primary); 
    color: white; 
}

.section.bg-secondary { 
    background: var(--gradient-secondary); 
    color: white; 
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: inherit;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section.bg-primary .section-title::after,
.section.bg-secondary .section-title::after {
    background: rgba(255, 255, 255, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
    font-weight: 400;
}

.section.bg-primary .section-title,
.section.bg-primary .section-subtitle,
.section.bg-secondary .section-title,
.section.bg-secondary .section-subtitle {
    color: white;
}

.section.bg-primary .section-subtitle,
.section.bg-secondary .section-subtitle {
    opacity: 0.95;
}

/* Hero Section - Contemporary Design */
.hero, .page-header, .cta-section {
    background: var(--gradient-hero) !important;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before, .page-header::before, .cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") !important;
    opacity: 0.1;
    z-index: 1;
}

.hero { padding: 6rem 0; }
.page-header { padding: 4rem 0; }
.cta-section { padding: 5rem 0; text-align: center; }

.hero h1, .page-title, .cta-title {
    font-weight: 800;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero h1 { 
    font-size: 3rem; 
    margin-bottom: 1.5rem; 
    line-height: 1.2; 
    background: linear-gradient(135deg, #ffffff 0%, #E4B429 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-title { font-size: 2.8rem; margin-bottom: 1rem; }
.cta-title { font-size: 2.5rem; margin-bottom: 1rem; }

.hero p, .page-subtitle, .cta-text {
    opacity: 0.95;
    position: relative;
    z-index: 2;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.hero p { font-size: 1.3rem; margin-bottom: 2.5rem; font-weight: 300; }
.page-subtitle { font-size: 1.3rem; }
.cta-text { font-size: 1.2rem; margin-bottom: 2.5rem; }

.hero-buttons, .hero-image { position: relative; z-index: 2; }

.hero-buttons .btn {
    margin: 0 0.75rem 0.75rem 0;
}

/* Geometric shapes for modern look */
.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 120%;
    background: linear-gradient(135deg, rgba(228, 180, 41, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    transform: rotate(15deg);
}


/* ==========================================================================
   5. FEATURE CARDS - CONTEMPORARY DESIGN
   ========================================================================== */
.feature-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,1) 100%);
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--box-shadow-sm);
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow);
    border-color: rgba(228, 180, 41, 0.1);
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,1) 100%);
}

.feature-icon {
    font-size: 3.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: var(--secondary);
}

.feature-text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-weight: 400;
}

.feature-card .btn {
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

/* ==========================================================================
   6. SEZIONE CAROUSEL RIMOSSA
   ========================================================================== */
/*
   Gli stili per #promoCarousel sono stati rimossi da questo file globale
   per evitare conflitti con Swiper.js.
   Gli stili necessari per il nuovo carosello Swiper sono ora definiti
   direttamente nel file Blade che lo utilizza (es. home.blade.php)
   usando lo stack @push('styles').
*/

/* ==========================================================================
   7. STATS SECTION - CONTEMPORARY DESIGN
   ========================================================================== */
.stats-section {
    padding: 6rem 0;
    background: var(--gradient-secondary) !important;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20v-40c11.046 0 20 8.954 20 20zM0 20v20h40V0H20c0 11.046-8.954 20-20 20z'/%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

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

.stats-section .stat-card {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--dark) !important;
    border-radius: var(--border-radius-lg) !important;
    box-shadow: var(--box-shadow);
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stats-section .stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(228, 180, 41, 0.1), transparent);
    animation: rotate 8s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stats-section .stat-card:hover::before {
    opacity: 1;
}

.stats-section .stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--box-shadow-lg);
}

.stats-section .stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.stats-section .stat-text {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray) !important;
    line-height: 1.4;
    position: relative;
    z-index: 2;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* ==========================================================================
   8. MODALI (es. YouTube)
   ========================================================================== */
.modal .modal-dialog {
    max-width: 800px;
    width: 90%;
    margin: 3rem auto;
}
.modal .modal-content {
    border-radius: 8px !important;
}

/* Stili specifici per il modale video */
#youtubeModal .modal-content {
    background: black !important;
    border: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5) !important;
}
#youtubeModal .modal-header {
    border: none !important;
    padding: 0.75rem 1rem !important;
    position: absolute;
    top: 0px; right: 0px;
    z-index: 10;
}
#youtubeModal .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat !important;
    opacity: 0.8 !important;
    padding: 0.5rem !important;
}
#youtubeModal .btn-close:hover { opacity: 1 !important; }

#youtubeModal .modal-body {
    padding: 0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

/* ==========================================================================
   9. FOOTER
   ========================================================================== */
footer {
    background-color: #333;
    color: rgba(255,255,255,0.7);
    padding: 3.5rem 0 1.5rem;
    font-size: 0.9rem;
}
.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}
.footer-contact {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}
.footer-contact i {
    margin-right: 0.85rem;
    opacity: 0.8;
    font-size: 1.1em;
    margin-top: 0.2em;
    color: var(--primary-light);
}
.footer-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}
.footer-link:hover { color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    margin-top: 2.5rem;
    opacity: 0.8;
    font-size: 0.85rem;
    text-align: center;
}

/* ==========================================================================
   10. RESPONSIVE
   ========================================================================== */
@media (max-width: 991.98px) { /* Tablet */
    .section { padding: 3rem 0; }
    .hero { padding: 4rem 0; }
    .hero h1 { font-size: 1.9rem; }
    .page-title { font-size: 2.1rem; }
    .section-title { font-size: 1.8rem; }
    .cta-title { font-size: 1.8rem; }

    .stats-section .stat-card {
        min-height: 180px;
        padding: 2rem 1rem;
    }
    .stats-section .stat-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 767.98px) { /* Mobile */
    body { padding-top: calc(var(--navbar-height) - 10px); }
    .section { padding: 2.5rem 0; }
    .hero { padding: 3rem 0; }
    .hero h1 { font-size: 1.7rem; }
    .hero p { font-size: 1rem; }
    .page-title { font-size: 1.8rem; }
    .section-title { font-size: 1.6rem; }
    .cta-title { font-size: 1.7rem; }
    .section-subtitle { font-size: 1rem; }

    .stats-section .row > div[class*="col-"] {
        margin-bottom: 1.5rem;
    }
    .stats-section .row > div[class*="col-"]:last-child {
        margin-bottom: 0;
    }
    .stats-section .stat-card {
        min-height: 160px;
        padding: 1.5rem;
    }
    .stats-section .stat-number {
        font-size: 2rem;
    }
    .stats-section .stat-text {
        font-size: 0.8rem;
    }

    .footer-title { text-align: center; }
    .footer-contact { justify-content: center; }
    .footer .col-md-4 { margin-bottom: 2rem; }
    .footer .col-md-4:last-child { margin-bottom: 0; }
}

@media (max-width: 575.98px) { /* Mobile Piccolo */
    body {
        font-size: 0.9rem;
    }
    .section { padding: 2rem 0; }
    .hero h1 { font-size: 1.5rem; }
    .section-title { font-size: 1.4rem; }
    .cta-title { font-size: 1.5rem; }

    .modal .modal-dialog {
        width: calc(100% - 1rem);
        margin: 0.5rem auto;
    }
}

/* ==========================================================================
   11. FORM
   ========================================================================== */
   /* Form Section Styles */
.content-section {
    padding: 4rem 0;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.content-text {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.content-text.highlight {
    background-color: #fff3cd;
    padding: 1rem;
    border-left: 4px solid var(--primary);
    margin: 1.5rem 0;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

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

.custom-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
}

.custom-card .card-header {
    border-radius: 8px 8px 0 0 !important;
    border-bottom: none;
}

.custom-card .card-body {
    padding: 2rem;
}
   

