.elementor-4588 .elementor-element.elementor-element-ac90392{--display:flex;}/* Start custom CSS for html, class: .elementor-element-f9241df *//* 
   CSS D'ANIMATION POUR GUIDE IMMOBILIER - VERSION 2 (STYLE CTA ÉPURÉ)
   Instructions : Copier ce code dans Elementor > Réglages Page > Avancé > CSS Personnalisé
*/

/* 1. Définition des Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 2. Structure et Mise en Page */
.ultimate-guide-container {
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    padding: 40px 20px;
}

/* Titre Principal */
.ultimate-guide-container h1 {
    font-size: 2.8rem;
    color: #1a2a6c;
    text-align: center;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Titres de Parties */
.part-title {
    font-size: 2rem;
    background: linear-gradient(-45deg, #1a2a6c, #b21f1f, #1a2a6c);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientBG 10s ease infinite;
    border-bottom: 3px solid #b21f1f;
    padding-bottom: 10px;
    margin: 60px 0 30px 0;
}

/* Sections d'Articles */
.article-section {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 35px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeInUp 0.8s ease-out backwards;
}

.article-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Typographie Interne */
.article-section h3 {
    color: #1a2a6c;
    font-size: 1.6rem;
    margin-top: 0;
    border-left: 5px solid #b21f1f;
    padding-left: 15px;
}

.article-section h4 {
    color: #b21f1f;
    font-size: 1.3rem;
    margin-top: 25px;
}

/* Listes Stylisées */
.article-section ul {
    list-style: none;
    padding-left: 5px;
}

.article-section ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.article-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #b21f1f;
    font-weight: bold;
    font-size: 1.2rem;
}

/* --- SECTION CTA MISE À JOUR (ROUGE ET BLANC, SANS FOND) --- */
.cta-box {
    background: none; /* Suppression de l'arrière-plan */
    color: #333; /* Texte principal sombre pour lisibilité sur fond blanc */
    padding: 40px 0;
    border-top: 2px solid #b21f1f; /* Ligne de séparation élégante en rouge */
    border-bottom: 2px solid #b21f1f;
    text-align: center;
    margin-top: 60px;
}

.cta-box h3 {
    color: #b21f1f; /* Titre en Rouge */
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-box p {
    color: #444;
    font-size: 1.1rem;
}

.contact-info {
    background: #ffffff; /* Fond blanc */
    border: 2px solid #b21f1f; /* Bordure rouge */
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    display: inline-block;
    color: #333;
    box-shadow: 0 5px 15px rgba(178, 31, 31, 0.1);
}

.contact-info strong {
    color: #b21f1f;
}

.contact-info a {
    color: #b21f1f; /* Liens en Rouge */
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #1a2a6c; /* Changement de couleur au survol */
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .ultimate-guide-container h1 { font-size: 2rem; }
    .cta-box h3 { font-size: 1.6rem; }
    .article-section { padding: 20px; }
}/* End custom CSS */