/* ==========================================================================
   PAGE BASE - Styles communs à toutes les pages intérieures
   Factorise les répétitions entre about.css, contact.css, home.css, etc.
   ========================================================================== */

/* ==========================================================================
   HERO DE PAGE — identique entre about.css et contact.css
   ========================================================================== */

.about-hero,
.contact-hero {
    background: linear-gradient(135deg, #1a73e8 0%, #0d5bbc 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-hero p,
.contact-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* ==========================================================================
   GRILLE EXPERTISE — identique entre home.css et about.css
   ========================================================================== */

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* ==========================================================================
   RESPONSIVE PARTAGÉ
   ========================================================================== */

@media (max-width: 768px) {
    .about-hero,
    .contact-hero {
        padding: 60px 0;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero p,
    .contact-hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1,
    .contact-hero h1 {
        font-size: 1.8rem;
    }
}
