body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* 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;
}

h1 {
    text-align: center;
    font-size: 36px;
    color: #007bff;
    margin-bottom: 50px;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.price {
    font-size: 32px;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 20px;
}

ul {
    text-align: left;
    margin: 0;
    padding-left: 20px;
}

ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.cta-button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

@media screen and (max-width: 768px) {
    .pricing-card {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
}

.intro-text p {
    margin-bottom: 20px;
}