body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
}

h1 {
    color: #ff69b4;
    text-align: center;
    margin-top: 2rem;
    font-size: 2.5rem;
    text-transform: uppercase;
    padding-top: 80px;
}

.services-container {
    margin: 2rem auto;
    text-align: center;
    padding: 2rem;
}

.service-cards-container {
    display: flex;
    flex-wrap: nowrap; /* Par défaut sur PC : nowrap */
    justify-content: center;
    gap: 2rem;
}

@media (max-width: 900px) {
    .service-cards-container {
        flex-wrap: wrap; /* Sur mobile/tablette : wrap */
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.15);
    border: 2px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(5px);
    flex: 1 1 calc(50% - 20px);
    padding: 20px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff69b4;
}   

.service-card p {
    font-size: 1rem;
    color: #ffffff;
}               

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

/* Pied de page */
footer {
    background-color: #000000;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 2px solid #ff69b4;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.social-links a {
    color: #ffffff;
    font-size: 1.4rem;
    margin-left: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ff69b4;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.contact {
    text-align: center;
    padding: 3rem 0;
    margin-top: 3rem;
    border-top: 2px solid #ff69b4;
    background: linear-gradient(to bottom, transparent, rgba(255, 105, 180, 0.05));
}