/* Titre */
h1 {
    font-size: 2.5em;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 20px;
    text-align: center; /* Centrer le titre */
}

/* Ligne de séparation */
.divider {
    width: 100px;
    height: 3px;
    background-color: #007bff;
    margin: 10px auto; /* Centrer la ligne */
}

/* Section de tarification */
.pricing-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center; /* Centrer les cartes */
    max-width: 1200px;
    margin: 0 auto; /* Centrer la section */
    text-align: center; /* Centrer le contenu texte de la section */
    padding: 50px 20px;
}

/* Carte de tarification */
.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    animation: fadeInUp 1s ease-out;
    margin: 10px; /* Espacement entre les cartes */
}

/* Cartes avec des bordures colorées */
.pricing-card:nth-child(1) {
    animation-delay: 0.2s;
    border-left: 8px solid #007bff;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.4s;
    border-left: 8px solid #333;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.6s;
    border-left: 8px solid #f39c12;
}

/* Animation d'apparition des cartes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Titre dans les cartes */
.pricing-card h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

/* Liste dans les cartes */
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-card ul li {
    margin-bottom: 10px;
    font-size: 1em;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center; /* Centrer les éléments dans la liste */
}

.pricing-card ul li::before {
    content: "✔";
    color: #007bff;
    margin-right: 10px;
}

/* Prix dans les cartes */
.pricing-card .price {
    font-size: 1.8em;
    font-weight: bold;
    color: #007bff;
    text-align: center; /* Centrer le prix */
    margin-bottom: 20px;
}

.pricing-card .price span {
    font-size: 0.8em;
    font-weight: normal;
}

/* Bouton dans les cartes */
.pricing-card .btn {
    display: block;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 0 auto; /* Centrer le bouton */
    width: auto; /* Réduit la longueur du bouton */
    max-width: 200px; /* Limite la largeur du bouton */
}

.pricing-card .btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Boutons spécifiques pour les cartes */
.pricing-card.black .btn {
    background-color: #333;
}

.pricing-card.black .btn:hover {
    background-color: #111;
}

.pricing-card.gold .btn {
    background-color: #f39c12;
}

.pricing-card.gold .btn:hover {
    background-color: #d35400;
}
