.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #00bcd4;
    font-size: 2.5rem;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s forwards;
    font-family: 'Roboto', sans-serif; /* Police professionnelle */
}

.cybersecurity-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    text-align: center;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    background-color: #1a202c; /* Bleu foncé professionnel */
    color: #fff;
}

.cybersecurity-section p {
    font-size: 1.2rem;
    line-height: 1.8; /* Améliore la lisibilité */
    color: #e0e0e0; /* Texte principal doux */
    margin: 0 auto 40px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1.5s forwards;
    animation-delay: 0.5s;
}

.proteger, .pourquoi {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7); /* Boîte légèrement opaque */
    max-width: 800px;
    margin: 20px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s forwards;
}

.proteger p {
    color: #4caf50; /* Texte captivant pour protéger */
}

.pourquoi p {
    color: #e0dedd; /* Texte captivant pour pourquoi */
}

.service-cards {
    display: flex;
    justify-content: space-between; /* Garde les services alignés sur une ligne */
    align-items: center;
    flex-wrap: nowrap; /* Assure que tout reste sur une seule ligne */
    gap: 20px;
    padding: 20px 0;
    opacity: 0;
    animation: fadeIn 2s forwards;
    animation-delay: 1s;
    overflow-x: auto; /* Ajoute un défilement horizontal si nécessaire */
}

.service-card {
    background-color: #222;
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeIn 2s forwards;
    animation-delay: 1.5s;
    flex-shrink: 0; /* Empêche les cartes de rétrécir */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #00bcd4;
}

.service-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
    color: #ffeb3b;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    color: #ccc;
}

.service-card ul li {
    margin: 10px 0;
    text-align: left;
}

.service-card button {
    background-color: #00bcd4;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card button:hover {
    background-color: #0199a6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .service-cards {
        flex-wrap: wrap; /* Permet de passer sur plusieurs lignes sur les petits écrans */
        justify-content: center;
    }
}
