/* Partie banner  */

#banner-712 span {
    color: #fff;
}

#banner-712 span a {
    color: var(--primary);
    text-decoration: none;
}

@media only screen and (min-width: 0rem) {
    #banner-712 {
        padding: clamp(10.9375rem, 10vw, 12.5rem) 1rem 6.25rem;
        position: relative;
        z-index: 1;
    }

    #banner-712 .cs-container {
        text-align: center;
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        /* align-items: flex-start; */
        flex-direction: column;
        gap: 1rem;
    }

    #banner-712 .cs-int-title {
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        /* font-weight: 900; */
        line-height: 1.2em;
        text-align: inherit;
        margin: 0;
        color: var(--bodyTextColorWhite);
        position: relative;
    }

    #banner-712 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    #banner-712 .cs-background:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: #000;
        opacity: 0.75;
        top: 0;
        left: 0;
        z-index: 1;
    }

    #banner-712 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

@media only screen and (min-width: 48rem) {
    #banner-712 .cs-background:before {
        opacity: 1;
        background: linear-gradient(
            90.01deg,
            rgba(0, 0, 0, 0.9) 16.86%,
            rgba(0, 0, 0, 0) 100%
        );
    }
}
/* Fin partie banner  */

@media only screen and (min-width: 0rem) {
    #services-1355 {
        /* padding: var(--sectionPadding); */
        position: relative;
        z-index: 10;
    }

    #services-1355 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }

    #services-1355 .cs-content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 25px;
        margin-bottom: 5rem;
    }

    #services-1355 .cs-title {
        max-width: 35ch;
        margin: 0;
    }

    #services-1355 .cs-card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(1rem, 2vw, 1.25rem);
    }

    #services-1355 .cs-item {
        text-align: center;
        list-style: none;
        width: 100%;
        height: 14rem;
        margin: 0;
        padding: 0;
        background-color: #000;
        border-radius: 1.5rem;
        overflow: hidden;
        box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
        box-sizing: border-box;
        grid-column: span 12;
        grid-row: span 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        position: relative;
        z-index: 1;
    }

    #services-1355 .cs-item:hover .cs-background:before {
        /* background-color: var(--primary); */
        opacity: 0.84;
    }

    #services-1355 .cs-item:hover .cs-background img {
        transform: scale(1.2);
    }

    #services-1355 .cs-link {
        text-decoration: none;
        width: 100%;
        height: 100%;
        padding: 1.5rem;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #services-1355 .cs-h3 {
        font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
        line-height: 1.2em;
        font-weight: bold;
        text-align: inherit;
        margin: 0;
        color: var(--bodyTextColorWhite);
        transition: color 0.3s;
    }

    #services-1355 .cs-span {
        display: block;
    }

    #services-1355 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    #services-1355 .cs-background:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background-color: #000;
        opacity: 0.4;
        top: 0;
        left: 0;
        z-index: 1;
        transition:
            background-color 0.3s,
            opacity 0.3s;
    }

    #services-1355 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.6s;
    }
}

@media only screen and (min-width: 37.5rem) {
    #services-1355 .cs-content {
        text-align: left;
        align-items: flex-start;
    }

    #services-1355 .cs-item {
        grid-column: span 6;
    }
}

@media only screen and (min-width: 64rem) {
    #services-1355 .cs-content {
        text-align: left;
        align-items: flex-start;
    }

    #services-1355 .cs-item {
        grid-column: span 4;
    }
}

:root {
    --color-primary-blue: #007bff;
    --color-light-blue: #f0f7ff;
    --color-background-grey: #f7f9fc;
    --color-text-main: #303030;
    --color-text-secondary: #6b7280;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.accent-blue {
    color: var(--color-primary-blue);
}

.accent-bg-blue {
    background-color: var(--color-primary-blue);
}

.main-text-color {
    color: var(--color-text-main);
}

.text-gray-600 {
    color: var(--color-text-secondary);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-image {
    width: 100%;
    max-width: 400px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.header-image picture img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.header-text h1 {
    font-size: 2.25rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.header-text p {
    font-size: 1.25rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .header-content {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }

    .header-image {
        width: 33.333%;
        margin-bottom: 0;
    }

    .header-text {
        width: 66.666%;
    }
}

.info-block {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background-color: #eff6ff;
    border-radius: 0.75rem;
    border-left: 4px solid var(--color-primary-blue);
}

.info-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.info-block p {
    color: #4b5563;
}

.region-block {
    margin-bottom: 2.5rem;
    padding: 1rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border-top: 8px solid var(--color-primary-blue);
}

.region-block h2 {
    font-size: 1.875rem;
    font-weight: 800;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.city-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
    .city-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .city-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 1280px) {
    .city-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

.city-link-card {
    display: block;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 0.75rem 0.5rem;
    text-decoration: none;
    transition:
        transform 0.2s ease-in-out,
        box-shadow 0.3s ease-in-out;
    border-left: 5px solid #e0e0e0;
}

.city-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
    border-left-color: var(--color-primary-blue);
    background-color: var(--color-light-blue);
}

.city-name {
    font-size: 0.95rem;
    line-height: 1.25rem;
    font-weight: 600;
    display: block;
}

.city-tag {
    font-size: 0.65rem;
    line-height: 0.8rem;
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
}

.cta-final {
    margin-top: 4rem;
    text-align: center;
    border-top: 1px solid #d1d5db;
    padding-top: 2rem;
}

.cta-final h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-final p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    background-color: var(--color-primary-blue);
    transition: background-color 0.3s;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -2px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.cta-button:hover {
    background-color: #0056b3;
}

.cs-subtitle {
    font-size: xx-large;
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

#zones-interventions {
    padding: 80px 0;
    background: #f8fafc;
}

#zones-interventions .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.intro-content {
    text-align: center;
    margin-bottom: 60px;
}

.intro-content h2 {
    font-size: 32px;
    margin: 15px 0;
    color: #1e293b;
}

.topper {
    color: #2563eb;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.reassurance-block {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 60px;
    text-align: center;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 80px;
}

.department-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: white;
    border-radius: 14px;
    text-decoration: none;
    color: #1e293b;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.department-card:hover {
    transform: translateY(-5px);
    border: 1px solid #2563eb;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}

.department-card h3 {
    margin: 0;
    font-size: 18px;
}

.department-card span {
    font-size: 14px;
    color: #64748b;
}

.department-card .arrow {
    font-size: 20px;
    color: #2563eb;
}

.question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    color: #000;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25);
    margin: 20px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.question::after {
    content: "\002B";
    /* + */
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: transform 0.2s ease;
}

.question.active::after {
    transform: rotate(45deg);
    /* + -> x */
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
}

.answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
    font-size: 1rem;
    color: #333;
}

#FAQ {
    padding-bottom: 6rem;
    width: 100%;
    margin: auto;
}

#FAQ,
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    text-decoration: none;
    color: #1e293b;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}

.f-w-700 {
    font-weight: 700;
}
