/* ==========================================
   about.css – Page À propos
   ECT Sécurité
========================================== */

/* --- Section About --- */
.about {
    padding: 70px 50px;
    text-align: center;
}

.about p {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* --- Section Services dans About --- */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.service {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
}

.service h3 {
    color: #c8a951;
    margin-bottom: 10px;
}

/* Mode clair */
.light-mode .service {
    background: #fff;
    color: #222;
}

.light-mode .service h3 {
    color: #c8a951;
}

/* Responsive */
@media (max-width: 768px) {
    .about {
        padding: 50px 20px;
    }
}