/* Override colors for serrurerie page */
/* Change header and hero from purple (#400E57) to dark gray (#383636) */

.header-purple {
    background-color: #383636;
}

.hero-purple {
    background-color: #383636;
}

/* Services grid 4 columns with lists */
.services-white .container {
    max-width: 1300px;
}

.services-heading {
    padding-bottom: 16px;
}

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.service-category {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #ddd;
    padding-right: 16px;
}

.service-category:last-child {
    border-right: none;
}

.service-category-title {
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #F96D3D;
    margin-bottom: 20px;
    text-align: left;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-family: "Hanken Grotesk", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #2D2D33;
    line-height: 1.8;
    padding-left: 36px;
    position: relative;
    margin-bottom: 10px;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><defs><style>.st0{fill:%230bb580;}.st1{fill:%23ebfcd6;}</style></defs><path class="st1" d="M0,12C0,5.4,5.4,0,12,0s12,5.4,12,12-5.4,12-12,12S0,18.6,0,12Z"/><path class="st0" d="M11,17c-.6.7-1.6.6-2.1-.2l-2.3-3.4c-.4-.6-.2-1.3.3-1.7h0c.5-.3,1.1-.3,1.5,0l1,.9c.4.4,1.1.4,1.5,0l5.1-5.9c.3-.3.7-.4,1.1-.2h0c.5.3.7.9.3,1.4l-6.4,9Z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .services-grid-4 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
