/* ==========================================
   VARIABLES ET RESET
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #9016B5;
    --primary-yellow: #EFDE1B;
    --primary-turquoise: #16D0A8;
    --text-white: #FFFFFF;
    --text-light: #F0F0F0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--primary-purple);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   HEADER LAYOUT
   ========================================== */
header {
    background: var(--text-white);
    border-bottom: 2px solid var(--primary-purple);
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.logo-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-header-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-image {
    max-height: 120px;
    width: auto;
    display: block;
}

.logo2-image {
    max-height: 100px;
}

.speech-bubbles {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.bubble {
    display: inline-block;
    padding: 15px 20px;
    border-radius: 25px;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-white);
    font-family: 'Brush Script MT', cursive;
    position: relative;
    box-shadow: 0 4px 15px var(--shadow-medium);
    transition: var(--transition);
}

.bubble:hover {
    transform: scale(1.05);
}

.bubble-left {
    background: var(--primary-turquoise);
    margin-right: -15px;
    z-index: 2;
    border-bottom-left-radius: 10px;
}

.bubble-right {
    background: var(--primary-yellow);
    z-index: 1;
    border-bottom-right-radius: 10px;
}

.bubble-left .text-et-apres {
    display: inline-block;
}

.bubble-left .accent {
    font-size: 2.2rem;
    vertical-align: text-bottom;
    margin-left: 5px;
}

.bubble-right .text-pres {
    display: inline-block;
}

.bubble-right .text-pres::first-letter {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: normal;
    transform: rotate(-15deg);
    padding-right: 10px;
}

/* Header text styling */
.header-text-centered {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.association-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-purple);
    margin: 0 0 10px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.association-slogan {
    font-size: 1.1rem;
    color: var(--primary-turquoise);
    margin: 0;
    font-style: italic;
    line-height: 1.5;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
/* Header styles moved above */

nav {
    background: rgba(22, 208, 168, 0.1);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(22, 208, 168, 0.3);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 0;
}

.nav-menu li {
    margin: 0 15px;
}

.nav-menu a {
    color: var(--text-white);
    text-decoration: none;
    text-shadow: 1px 1px 1px black;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    background: var(--primary-turquoise);
    color: var(--primary-purple);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, rgba(22, 208, 168, 0.2) 100%);
    padding: 100px 20px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-turquoise), var(--primary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 30px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-turquoise), var(--primary-yellow));
    color: var(--text-white);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: 80px 20px;
}

.section-alt {
    background: rgba(22, 208, 168, 0.05);
}

.section-engage {
    background: var(--primary-turquoise);
    color: var(--text-white);
}

.section-constats {
    background: var(--primary-turquoise);
    color: var(--text-white);
}

.section-plus {
    background: var(--primary-yellow);
    color: var(--primary-purple);
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-turquoise);
}

.section-engage h2,
.section-constats h2 {
    color: var(--text-white);
}

.section-plus h2 {
    color: var(--primary-purple);
}

/* Association Presentation */
.association-presentation {
    background: var(--primary-purple);
    color: var(--text-white);
}

.presentation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.presentation-image {
    width: 100%;
}

.presentation-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.presentation-text {
    padding: 20px;
    text-align: justify;
}

.presentation-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-white);
}

.presentation-text p.highlight {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-yellow);
    padding: 20px;
    background: rgba(237, 221, 32, 0.1);
    border-left: 4px solid var(--primary-yellow);
    border-radius: 8px;
}

.presentation-text strong {
    color: var(--primary-yellow);
    font-weight: 600;
}

.btn-enquete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--primary-yellow);
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    margin-top: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-enquete:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f5d000;
}

.enquete-icon {
    display: inline-flex;
    align-items: center;
    color: var(--primary-turquoise);
}

.enquete-icon svg {
    width: 24px;
    height: 24px;
}

/* Floating Enquête Button */
.btn-enquete-fixed {
    position: fixed;
    top: 80px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-yellow);
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.btn-enquete-fixed:hover {
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: #f5d000;
}

.btn-enquete-fixed.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: slideInRight 0.5s ease-out;
}

.btn-enquete-fixed:hover.visible {
    transform: translateX(-5px);
}

.btn-enquete-fixed .enquete-icon {
    color: var(--primary-turquoise);
}

.btn-enquete-fixed .enquete-icon svg {
    width: 20px;
    height: 20px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Constats et Valeurs */
.constats-valeurs-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.constats-section,
.valeurs-section {
    display: flex;
    flex-direction: column;
}

.constats-header,
.valeurs-header {
    text-align: center;
    margin-bottom: 20px;
}

.constats-header h2,
.valeurs-header h2 {
    color: var(--text-white);
    font-size: 2.5rem;
}

.constats-valeurs-grid {
    display: contents;
}

.constats-column,
.valeurs-column {
    background: var(--text-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.constats-column:hover,
.valeurs-column:hover,
.objectifs-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.constats-column h3,
.valeurs-column h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-purple);
    text-align: center;
    font-weight: 600;
}

.constats-list,
.valeurs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.constat-item,
.valeur-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(144, 22, 181, 0.2);
}

.constat-item:last-child,
.valeur-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.constat-item h4,
.valeur-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-purple);
    margin: 0 0 10px 0;
}

.constat-item p,
.valeur-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--primary-purple);
    margin: 0;
    opacity: 0.9;
}

/* Objectifs Section */
.objectifs-header {
    text-align: center;
    margin: 40px 0 0 0;
}

.objectifs-header h2 {
    color: var(--text-white);
    font-size: 2.5rem;
}

.objectifs-section {
    background: var(--text-white);
    padding: 40px;
    margin: 0;
    border-radius: 15px;
    justify-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.objectifs-section p {
    color: var(--primary-purple);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 15px 0;
}

/* Projets Section */
.projets-header {
    text-align: center;
    margin: 40px 0 0 0;
}

.projets-header h2 {
    color: var(--text-white);
    font-size: 2.5rem;
    margin-bottom: unset;
}

.projets-section-content {
    background: var(--primary-turquoise);
    padding: 40px;
    margin: 0;
    border-radius: 15px;
}

.projets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 0;
}

.projet-item {
    background: var(--text-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.projet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.projet-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projet-icon svg,
.projet-icon img {
    width: unset;
    height: 50px;
}

.projet-image {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    margin-bottom: 20px;
    display: block;
}

.projet-content h3 {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.projet-content p {
    color: var(--primary-purple);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

/* Je m'engage Section */
.engage-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.engage-text {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-white);
    text-align: center;
}

.helloasso-link {
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.helloasso-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.helloasso-link:hover .helloasso-image {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.helloasso-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-white);
    color: var(--primary-purple);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.2rem;
    pointer-events: none;
    opacity: 1;
    transition: var(--transition);
    white-space: nowrap;
}

/* Fondateurs Section */
.fondateurs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.fondateur-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    position: relative;
}

.fondateur-photo-wrapper {
    position: relative;
    width: 80%;
    aspect-ratio: 1;
    overflow: hidden;
    align-self: center;
}

.fondateur-photo {
    width: 100%;
    object-fit: cover;
    display: block;
    justify-self: center;
}

.fondateur-name-banner {
    position: relative;
    bottom: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.65);
    padding: 20px 25px 25px 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    align-self: center;
}

.fondateur-name {
    color: #993399;
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0 0 10px 0;
    text-align: left;
    width: 100%;
}

.fondateur-role {
    color: #20B2AA;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.fondateur-bio {
    color: #993399;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.fondateur-quote-intro {
    color: #993399;
    font-size: 1rem;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.fondateur-quote {
    color: #993399;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    margin: 0 0 8px 0;
    padding-left: 15px;
    border-left: 3px solid #993399;
}

.fondateur-attribution {
    color: #993399;
    font-size: 0.95rem;
    text-align: right;
    margin: 0;
    font-style: italic;
    padding-right: 20px;
}

/* ==========================================
   CONTENT GRID & CARDS
   ========================================== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.content-card:hover {
    border-color: var(--primary-turquoise);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.content-card .icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.content-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-yellow);
}

.content-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Activity Items */
.activity-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-yellow);
    transition: var(--transition);
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.activity-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-turquoise);
}

/* ==========================================
   NEWS GRID
   ========================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    border-top: 3px solid var(--primary-turquoise);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.news-date {
    color: var(--primary-yellow);
    font-weight: bold;
    margin-bottom: 15px;
}

.news-card h3 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-info-simple {
    max-width: 600px;
    margin: 40px auto 0;
    text-align: center;
}

.contact-phone {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-turquoise);
    margin-bottom: 30px;
}

.contact-email {
    font-size: 1.5rem;
    margin: 0;
}

.contact-email a {
    color: var(--primary-turquoise);
    text-decoration: none;
    transition: var(--transition);
}

.contact-email a:hover {
    color: var(--primary-yellow);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.social-link {
    color: var(--primary-turquoise);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: var(--primary-yellow);
    transform: translateY(-5px);
}

.social-link svg {
    width: 40px;
    height: 40px;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid var(--primary-yellow);
}

footer p {
    margin: 10px 0;
    color: var(--text-light);
}

/* ==========================================
   PAGE DE REMERCIEMENT
   ========================================== */
.merci-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--primary-purple);
}

.merci-content {
    background: var(--text-white);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.merci-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    color: var(--primary-turquoise);
    font-weight: bold;
}

.merci-title {
    font-size: 2.5rem;
    color: var(--primary-purple);
    margin-bottom: 20px;
    font-weight: bold;
}

.merci-message {
    font-size: 1.2rem;
    color: var(--primary-purple);
    line-height: 1.8;
    margin-bottom: 20px;
}

.merci-subtitle {
    font-size: 1.1rem;
    color: var(--primary-turquoise);
    font-weight: 600;
    margin-top: 30px;
}

.merci-message-green {
    font-size: 1.2rem;
    color: var(--primary-turquoise);
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 30px;
}

.merci-logo {
    max-width: 200px;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
}

.merci-btn-retour {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--primary-turquoise);
    color: var(--primary-purple);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.merci-btn-retour:hover {
    background: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .merci-content {
        padding: 40px 25px;
    }

    .merci-title {
        font-size: 2rem;
    }

    .merci-message {
        font-size: 1.1rem;
    }

    .merci-icon {
        font-size: 4rem;
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .header-text-centered {
        flex: 1;
        padding: 0;
        order: 2;
    }

    .logo-header {
        gap: 10px;
        order: 1;
    }

    .logo-header-right {
        gap: 10px;
        order: 3;
    }

    .logo2-image {
        max-height: 80px;
    }

    .fondateurs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .association-name {
        font-size: 2rem;
    }

    .association-slogan {
        font-size: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero .lead {
        font-size: 1.2rem;
    }

    .bubble {
        font-size: 2rem;
        padding: 20px 25px;
    }

    .section h2 {
        font-size: 2rem;
    }

    .presentation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .constats-valeurs-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .constats-header h2,
    .valeurs-header h2 {
        font-size: 2rem;
    }

    .constats-column h3,
    .valeurs-column h3 {
        font-size: 1.5rem;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li {
        margin: 5px 0;
    }

    .underline {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .association-name {
        font-size: 1.5rem;
    }

    .association-slogan {
        font-size: 0.9rem;
    }

    .presentation-text p {
        font-size: 1rem;
    }

    .presentation-text p.highlight {
        font-size: 1.1rem;
        padding: 15px;
    }

    .engage-text {
        font-size: 1.1rem;
    }

    .helloasso-image {
        max-width: 300px;
    }

    .helloasso-overlay {
        font-size: 1rem;
        padding: 10px 25px;
    }

    .bubble {
        font-size: 1.5rem;
        padding: 15px 20px;
    }

    .bubble-left .accent,
    .bubble-right .text-pres::first-letter {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .content-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .btn-enquete-fixed {
        top: auto;
        bottom: 20px;
        right: 10px;
        left: 10px;
        width: calc(100% - 20px);
        justify-content: center;
        padding: 12px 15px;
        font-size: 0.9rem;
        transform: translateY(20px);
    }
    
    .btn-enquete-fixed.visible {
        transform: translateY(0);
        animation: slideInUp 0.5s ease-out;
    }
    
    .btn-enquete-fixed:hover.visible {
        transform: translateY(-3px);
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .btn-enquete-fixed .enquete-icon svg {
        width: 18px;
        height: 18px;
    }

    .constats-valeurs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header-constats-valeurs h2 {
        font-size: 1.8rem;
    }

    .constats-column h3,
    .valeurs-column h3 {
        font-size: 1.3rem;
    }

    .constat-item h4,
    .valeur-item h4 {
        font-size: 1.1rem;
    }

    .constat-item p,
    .valeur-item p {
        font-size: 0.95rem;
    }

    .objectifs-header h2 {
        font-size: 2rem;
    }

    .projets-header h2 {
        font-size: 2rem;
    }

    .objectifs-section {
        padding: 20px;
    }

    .projets-section-content {
        padding: 20px;
    }

    .objectifs-section p {
        font-size: 1rem;
    }

    .projets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .projet-item {
        padding: 20px;
    }

    .projet-icon svg,
    .projet-icon img {
        width: 60px;
        height: 60px;
    }

    .projet-content h3 {
        font-size: 1.3rem;
    }

    .projet-content p {
        font-size: 1rem;
    }

    .contact-phone {
        font-size: 1.5rem;
    }

    .contact-email {
        font-size: 1.2rem;
    }

    footer {
        padding-bottom: 100px;
    }
}