/* Reset */


/* Section principale */
.sn-security-section {
    max-width: 1400px;
    margin: 0 auto;
}

.sn-section-title {
    font-size: 2.5rem;
    color: #1f2937;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 50px;
    max-width: 800px;
    text-align: center;   /* <-- AJOUT OBLIGATOIRE */
    margin-left: auto;    /* pour centrer le bloc */
    margin-right: auto;   /* pour centrer le bloc */
}

.sn-section-title .sn-highlight {
    color: #6366f1;
}

.sn-content-wrapper {
    position: relative;
    min-height: 400px
    
}

.sn-background-image {
    width: 100%;
    height: 700px;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.sn-info-cards {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
    padding: 15px 20px;
}

.sn-info-card {
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sn-card-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #6366f1 100%);
    color: white;
}

.sn-card-pink {
    background: #fce7f3;
    color: #1f2937;
}

.sn-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.sn-card-pink .sn-card-icon {
    background: #a855f7;
    color: white;
}

.sn-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.sn-card-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Responsivité */
@media (max-width: 1200px) {
    .sn-content-wrapper {
        position: relative;
        min-height: auto;
    }

    .sn-background-image {
        height: 500px;
        margin-bottom: 30px;
    }

    .sn-info-cards {
        position: static;
        width: 100%;
        padding: 0;
    }
}

@media (max-width: 768px) {
    body {
        padding: 40px 20px;
    }

    .sn-section-title {
        font-size: 1.8rem;
    }

    .sn-background-image {
        height: 350px;
    }

    .sn-info-card {
        padding: 30px;
    }

    .sn-card-title {
        font-size: 1.2rem;
    }

    .sn-card-description {
        font-size: 0.95rem;
    }
}
