  /* Style général */
  body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7fa;
    color: #212529;
}

/* Section principale */
.coaching-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.coaching-section h1 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #007bff;
    text-transform: uppercase;
}

/* Style des cartes */
.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeIn 1s ease-in-out;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card h2 {
    font-size: 2rem;
    margin: 0;
    padding: 20px;
    background-color: #007bff;
    color: #ffffff;
    text-align: center;
    border-radius: 10px;
}

/* Tableaux de prix */
.pricing-table {
    padding: 20px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #e9ecef;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    animation: fadeInUp 1s ease-in-out;
}

.pricing-item:hover {
    background-color: #d6e9f8;
}

.pricing-item h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin: 0;
}

.pricing-item p {
    font-size: 1rem;
    color: #495057;
    margin: 0;
}

.pricing-item strong {
    font-size: 1.2rem;
    color: #000;
}

/* Animation d'apparition */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Style du bouton "Nous contacter" */
.contact-btn {
    display: block;
    width: 200px;
    margin: 50px auto;
    padding: 15px;
    background-color: #28a745;
    color: white;
    text-align: center;
    font-size: 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background-color: #218838;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .pricing-item h3 {
        margin-bottom: 10px;
    }

    .service-card h2 {
        font-size: 1.6rem;
    }

    .contact-btn {
        width: 100%;
        padding: 12px;
    }
}