/* =====================================================
   HERO SECTIONS - UNIFIED DESIGN
   ===================================================== */

#s1[style*="background"] {
    /* Utilise les styles inline pour éviter les conflits */
}

/* Alternative: Si utilisation de classes */
.hero-section {
    background: #F8F8F8;
    padding: 40px 20px 40px;
    margin: 0 0 40px 0;
    position: relative;
    padding-bottom: 60px;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 6px;
    background-color: #FFCC05;
    border-radius: 3px;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    align-items: center;
    justify-items: center;
    gap: 30px;
}

.hero-icon {
    font-size: 75px;
    color: #FFCC05; /* Company color - Abeille Parachutisme */
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
}

.hero-content {
    grid-column: 2;
    text-align: center;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    color: #222;
    font-family: 'Montserrat-Bold', sans-serif;
    text-transform: uppercase;
}

.hero-content h2 {
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-icon {
        font-size: 60px;
        grid-column: 1;
        margin-bottom: 10px;
    }

    .hero-content {
        grid-column: 1;
    }

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

    .hero-content h2 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-icon {
        font-size: 50px;
    }

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

    .hero-content h2 {
        font-size: 0.9rem;
    }
}
