
.FormationResauxSociaux header {
    background-color: #f7f8fc;
    color: rgb(30, 28, 138);
    text-align: center;
    padding: 40px 20px;
}

.FormationResauxSociaux header h1 {
    font-size: 2.8rem;
    margin: 0;
}

.FormationResauxSociaux header p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.FormationResauxSociaux .container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
}

.FormationResauxSociaux .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.FormationResauxSociaux .service {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.FormationResauxSociaux .service:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.FormationResauxSociaux .service h3 {
    background: #4e54c8;
    color: white;
    margin: 0;
    padding: 20px;
    font-size: 1.8rem;
}

.FormationResauxSociaux .service p {
    padding: 20px;
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.FormationResauxSociaux .details {
    padding: 20px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    border-top: 1px solid #eee;
}

.FormationResauxSociaux .price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745;
    text-align: center;
    padding: 15px;
}

.FormationResauxSociaux .service .btn {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    background: #4e54c8;
    color: white;
    border: none;
    cursor: pointer;
}

.FormationResauxSociaux .service button:hover {
    background: #3c43a8;
}