/* Section Styles */
section {
    padding: 3rem;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 16px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    text-align: justify;
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
    transform: translateY(30px);
    font-family: 'Playfair Display', serif; /* Élégante et séduisante */
    line-height: 1.8;
    letter-spacing: 0.5px;
    word-spacing: 0.1em; /* Espacement subtil des mots */
    font-size: 1.1rem;
   
}

section:hover {
    transform: translateY(0);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Individual Section Colors */
#qui-sommes-nous {
    background: linear-gradient(135deg, #e3f2fd, #e8f0fe); /* Subtle gradient */
    animation-delay: 0.2s;
}

#pourquoi-nous-choisir {
    background: linear-gradient(135deg, #f8f9fa, #f1f3f4); /* Neutral light gradient */
    animation-delay: 0.4s;
}

#nos-partenaires {
    background: linear-gradient(135deg, #dbeafe, #d1e3ff); /* Soft blue gradient */
    animation-delay: 0.6s;
}

#decompte {
    background: linear-gradient(135deg, #fff9db, #fef9e7); /* Light yellow gradient */
    animation-delay: 0.8s;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: inherit;
    text-transform: capitalize;
    font-family: 'Merriweather', serif; /* Professionnel et attrayant */
    font-weight: bold;
    letter-spacing: 1px;
    color: #1a73e8; /* Accentue les titres avec un bleu élégant */
}

/* Text Style in Sections */
section p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: justify;
    font-family: 'Lora', serif; /* Ajoute une touche de luxe au texte */
    font-weight: 400;
    letter-spacing: 0.3px;
    word-spacing: 0.1em; /* Alternative à text-justify */
    margin-bottom: 1rem;
}

section p:first-letter {
    font-size: 2rem;
    font-weight: bold;
    color: #1a73e8; /* Accentuation du premier caractère */
    float: left;
    margin-right: 0.5rem;
    line-height: 1;
}

/* Decompte Styles */
.decompte {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-top: 2rem;
    gap: 1.5rem;
}

.decompte div {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'Roboto', sans-serif;
}

.decompte div:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.1);
}

.decompte div h3 {
    font-size: 3rem;
    color: #1a73e8; /* Professional blue */
    margin: 0;
    font-weight: bold;
    font-family: 'Playfair Display', serif;
}

.decompte div p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
