.elementor-23587 .elementor-element.elementor-element-bcb5ee6{--display:flex;}/* Start custom CSS for html, class: .elementor-element-576d3c6 *//* Import police moderne (Poppins) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0066a1;
    --primary-light: #f0f7ff;
    --text-dark: #1e293b;
    --text-grey: #475569;
    --card-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 20px 40px -8px rgba(0, 102, 161, 0.15);
    --border-radius: 18px;
}

.educ-container {
    font-family: 'Poppins', sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-size: 20px; /* Base size augmentée */
}

/* --- HEADER --- */
.educ-hero {
    text-align: center;
    padding: 70px 20px 50px;
    background: radial-gradient(circle at 10% 20%, #e6f4ff, #ffffff);
    border-radius: 30px;
    margin-bottom: 80px;
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}
.educ-hero h1 {
    font-size: 3.4rem; /* Texte TRÈS grand */
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    max-width: 900px;
    margin: 0 auto 20px;
}
.educ-hero p {
    font-size: 1.6rem;
    color: var(--text-grey);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* --- MENU DE NAVIGATION "ON Y RETROUVE" --- */
.educ-menu-bloc {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 90px;
    align-items: center;
}
.educ-menu-left {
    flex: 1;
    min-width: 300px;
}
.educ-menu-left h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px;
}
.educ-menu-left p {
    font-size: 1.4rem;
    color: var(--text-grey);
    margin-bottom: 30px;
}
.educ-menu-img {
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    max-width: 100%;
    height: auto;
    width: 100%;
}
.educ-menu-right {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.educ-nav-btn {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    text-decoration: none;
    border: 1px solid #eef2f6;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    font-size: 1.2rem;
}
.educ-nav-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 15px 25px -5px rgba(0, 102, 161, 0.3);
}

/* --- THÉORIES --- */
.educ-theories {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 90px;
    background: white;
    padding: 60px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}
.educ-theories-title {
    flex: 0 0 250px;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
}
.educ-theories-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.educ-theory-item {
    padding: 30px 35px;
    background: var(--primary-light);
    border-radius: 18px;
    border-left: 8px solid var(--primary-blue);
}
.educ-theory-item strong {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.educ-theory-item span {
    font-size: 1.2rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* --- DIAGRAMME ACTION ÉDUCATIVE (NOUVEAU DESIGN) --- */
.educ-principes-section {
    margin-bottom: 90px;
    background: #f8fafc;
    padding: 60px;
    border-radius: var(--border-radius);
    position: relative;
}
.educ-principes-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.educ-diagram-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    align-items: center;
}

/* L'image circulaire au centre */
.educ-circle-center {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    transition: transform 0.6s ease;
    flex-shrink: 0;
}
.educ-circle-center:hover {
    transform: scale(1.05) rotate(3deg);
}
.educ-circle-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carte en demi-lune ou en bulle autour */
.educ-orbital-items {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
    gap: 30px;
    max-width: 700px;
}
.educ-orbital-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    flex: 1 1 180px;
    max-width: 220px;
    box-shadow: 0 10px 20px -10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    transition: all 0.3s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.educ-orbital-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
}
.educ-orbital-card strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.educ-orbital-card span {
    font-size: 1rem;
    color: var(--text-grey);
}

/* --- INTERVENTIONS --- */
.educ-interventions {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
    padding: 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: var(--border-radius);
}
.educ-inter-left {
    flex: 0 0 240px;
}
.educ-inter-left h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text-dark);
}
.educ-inter-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.educ-inter-card {
    background: white;
    padding: 22px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    border: 1px solid #f0f2f5;
}
.educ-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    flex-shrink: 0;
}
.educ-inter-card span {
    font-weight: 500;
    font-size: 1.2rem;
}

/* --- QUALITÉ (FOOTER) --- */
.educ-quality {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 20px;
}
.educ-quality-title {
    flex: 0 0 260px;
}
.educ-quality-title h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.educ-quality-title p {
    font-size: 1.2rem;
    color: #475569;
}
.educ-quality-cards {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.educ-qual-card {
    flex: 1 1 220px;
    padding: 35px;
    border-radius: var(--border-radius);
    color: white;
    transition: transform 0.3s;
}
.educ-qual-card:hover {
    transform: scale(1.02);
}
.educ-qual-card h4 {
    font-size: 1.8rem;
    margin: 0 0 15px;
}
.educ-qual-card p {
    opacity: 0.9;
    line-height: 1.7;
    font-size: 1.2rem;
}
.card-structure { background: linear-gradient(145deg, #1e3a8a, #3b82f6); }
.card-process { background: linear-gradient(145deg, #0f766e, #14b8a6); }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .educ-container { font-size: 18px; }
    .educ-hero h1 { font-size: 2.6rem; }
    .educ-hero p { font-size: 1.3rem; }
    .educ-theories-title { flex: 1 1 100%; }
    .educ-diagram-container { flex-direction: column; }
    .educ-inter-right { grid-template-columns: 1fr; }
    .educ-quality-title { flex: 1 1 100%; }
    .educ-quality-cards { flex-direction: column; }
    .educ-orbital-card { min-height: 100px; }
    .educ-orbital-card strong { font-size: 1.1rem; }
}/* End custom CSS */