/* --- Héros Section pour la page À Propos --- */
.about-hero-section {
    position: relative;
    height: 50vh; /* Moins haut que la page d'accueil */
    width: 100%;
    background: url('img/peintre2.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 60px;
    background-color: #333; /* Fallback si l'image ne charge pas */
}

.about-hero-section .hero-content h1 {
    font-size: 2.5em;
}

/* --- Section Introduction de l'entreprise --- */
.company-intro-section {
    padding: 80px 50px;
    background-color: #fff;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.intro-text {
    flex: 1.2; /* Donner un peu plus de place au texte */
    text-align: left;
}

.intro-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.intro-text p {
    font-size: 1.05em;
    color: #555;
    margin-bottom: 20px;
}

/* --- Section Valeurs --- */
.values-section {
    padding: 80px 50px;
    text-align: center;
    background-color: #f9f9f9;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.value-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.value-card p {
    color: #666;
    font-size: 0.95em;
}

/* --- Responsive --- */
@media (max-width: 850px) {
    .intro-content {
        flex-direction: column;
    }
    .intro-text {
        text-align: center;
    }
    .intro-text .section-title {
        text-align: center;
    }
}