:root {
    --yellow-sun: #ffd100;
    --blue-sky: #5bc0de;
    --bg-light: #ffffff;
    --bg-gray: #f9f9f9;
    --text-dark: #333333;
    --bg-footer: #ffffff;
    --text-main: #1a1a1a;
    --blue-oldjh: #00a1c9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

body {
    background-color: #1E1E1E; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.bleu, .blanck { color: #1a1a1a; }
.noir { color: #000000; }
.px18 { font-size: 18px; }
.px20 { font-size: 20px; }
.px23 { font-size: 23px; }
.outfit { font-family: 'Outfit', sans-serif; }
.bold { font-weight: bold; }
.weigth400 { font-weight: 400; }
.weigth600 { font-weight: 500; }
.flex { display: flex; justify-content: space-evenly; align-items: center; }

.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(194, 191, 191, 0.64);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    padding: 0 5%;
}

.logohead {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.a {
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
    font-weight: 700;
    letter-spacing: 1px;
}

.a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1a1a1a;
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.4s ease-out;
}

.a:hover::after {
    transform: scaleX(1);
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-yellow {
    background: var(--yellow-sun);
    color: #000;
    border: 2px solid var(--yellow-sun);
}

.btn-yellow:hover {
    background: transparent;
    color: var(--yellow-sun);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('img/image 1.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
}

.hero-content {
    max-width: 800px;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 3.2rem;
    color: var(--yellow-sun);
    font-style: italic;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.services-wrapper {
    background-color: var(--yellow-sun);
    padding: 100px 10%;
    text-align: center;
}

.services-wrapper h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #000;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 60px;
    font-weight: 500;
    font-size: 1.1rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: #f0fbfc;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    color: var(--blue-sky);
    font-size: 2.2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #000;
}

.service-card p {
    color: #666;
    font-size: 1rem;
}

.association-section {
    display: flex;
    background: #1a1a1a;
    color: #fff;
    min-height: 500px;
    flex-wrap: wrap;
}

.assoc-text {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    line-height: 1.8;
    min-width: 300px;
}

.assoc-img {
    flex: 1;
    min-width: 300px;
    background: url('img/image 2.png') no-repeat center/cover;
}

.assoc-img img {
    display: none;
}

.actions-wrapper {
    background-color: var(--blue-sky);
    padding: 100px 10%;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.action-card {
    background: #fff;
    flex: 1;
    min-width: 280px;
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.action-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: #000;
}

.action-card p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: #555;
}

.final-quote {
    text-align: center;
    padding: 10px 20px;
    padding-bottom: 80px;
    background: var(--blue-sky);
    color: #000;
    font-weight: 700;
    font-size: 1.3rem;
}

.soutiens-wrapper {
    background-color: #5bc0de;
    padding: 60px 0; 
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden; 
}

.soutiens-title {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 50px;
    font-weight: 800;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap; 
    position: relative;
    display: flex;
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px; 
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #5bc0de, transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #5bc0de, transparent);
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    padding: 20px 0; 
    animation: scroll-marquee 40s linear infinite; 
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-track img {
    height: 80px;         
    width: 160px;         
    padding: 15px;        
    margin: 0 25px;       
    background-color: #ffffff; 
    border-radius: 15px;  
    box-shadow: 0 4px 15px rgba(0,0,0,0.15); 
    object-fit: contain;  
    filter: grayscale(100%); 
    opacity: 0.9;
    transition: all 0.3s ease;
}

.marquee-track img:hover {
    filter: grayscale(0%); 
    opacity: 1;
    transform: translateY(-8px); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.25); 
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero-asso {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('img/c3ce1c4414e0789046b10ef34764adc3b68f383b.png') center/cover;
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 180px;
}

.hero-asso-content {
    max-width: 800px;
    z-index: 2;
}

.cyan-text {
    color: #00bcd4;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-asso-content p {
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
}

.dark-panel {
    background-color: #222222;
    border-radius: 40px 40px 0 0;
    margin-top: -100px;
    padding: 60px 5% 100px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nos-parcours-header {
    width: 100%;
    max-width: 1100px;
    margin-bottom: 50px;
    text-align: left;
}

.nos-parcours-header h2 {
    color: #FFD254;
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.nos-parcours-header p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
}

.parcours-card {
    background-color: white;
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reverse-card {
    flex-direction: row-reverse;
}

.parcours-text-side {
    padding: 50px;
    flex: 1.2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.parcours-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.parcours-icon {
    width: 45px;
    height: 45px;
    background-color: #fdf5d3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f7c566;
    flex-shrink: 0;
}

.parcours-title-wrap h3 {
    color: #222;
    font-size: 1.8rem;
    font-weight: 800;
}

.parcours-text-side p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    text-align: left;
}

.btn-yellow-rounded {
    background-color: #FFD254;
    color: #000;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-yellow-rounded:hover {
    background-color: #e6bc4a;
    transform: translateY(-2px);
}

.parcours-img-side {
    flex: 1;
    min-width: 300px;
}

.parcours-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.don-page {
    padding: 150px 5% 100px;
    background-color: #1a1a1a;
    min-height: 100vh;
}

.don-header-text {
    text-align: center;
    margin-bottom: 60px;
}

.don-header-text h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.don-header-text p {
    color: #00bcd4;
    font-size: 1.1rem;
    line-height: 1.6;
}

.don-layout {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.don-form-panel {
    flex: 1.5;
    min-width: 320px;
    background-color: #222222;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-step {
    margin-bottom: 40px;
}

.step-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.step-number {
    width: 35px;
    height: 35px;
    background-color: #554823;
    color: #FFD254;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-title h3 {
    color: white;
    font-size: 1.3rem;
}

.freq-toggle {
    display: flex;
    background-color: white;
    border-radius: 30px;
    padding: 5px;
    width: 100%;
    max-width: 400px;
}

.freq-toggle input[type="radio"] {
    display: none;
}

.freq-label {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: #888;
    transition: all 0.3s;
}

.freq-toggle input[type="radio"]:checked + .freq-label {
    background-color: #FFD254;
    color: #000;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.amount-grid input[type="radio"] {
    display: none;
}

.amount-label {
    border: 1px solid #444;
    background-color: #2a2a2a;
    color: white;
    padding: 15px 10px;
    text-align: center;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.amount-grid input[type="radio"]:checked + .amount-label {
    background-color: #FFD254;
    color: #000;
    border-color: #FFD254;
}

.custom-amount-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

.coords-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.input-group-don {
    flex: 1;
    min-width: 200px;
}

.input-group-don.full-width {
    flex: 100%;
}

.input-group-don label {
    display: block;
    color: #00bcd4;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.input-group-don input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: none;
    font-size: 1rem;
    outline: none;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border: 1px solid #444;
    border-radius: 12px;
    margin-bottom: 15px;
    cursor: pointer;
    background-color: #2a2a2a;
    transition: border-color 0.3s;
}

.payment-method:hover {
    border-color: #FFD254;
}

.pay-left {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-weight: 500;
}

.payment-method input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #888;
    position: relative;
}

.payment-method input[type="radio"]:checked + .custom-radio {
    border-color: #FFD254;
}

.payment-method input[type="radio"]:checked + .custom-radio::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background: #FFD254;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.submit-don-btn {
    width: 100%;
    background-color: #FFD254;
    color: #000;
    border: none;
    padding: 20px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 20px;
}

.submit-don-btn:hover {
    background-color: #e6bc4a;
    transform: translateY(-2px);
}

.secure-text {
    text-align: center;
    color: #888;
    font-size: 0.85rem;
    margin-top: 15px;
}

.don-info-panel {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.impact-box {
    background-color: #2d2a21;
    border: 1px solid #4a4531;
    border-radius: 20px;
    padding: 30px;
}

.impact-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.impact-header h3 {
    color: white;
    font-size: 1.3rem;
}

.impact-list {
    list-style: none;
    margin-bottom: 25px;
}

.impact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.impact-circle {
    min-width: 45px;
    height: 45px;
    background-color: #fdf5d3;
    color: #a67c00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.95rem;
}

.impact-list p {
    color: #ddd;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-top: 5px;
}

.impact-quote {
    background-color: white;
    color: #000;
    padding: 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-style: italic;
    font-weight: 500;
    text-align: center;
}

.don-image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
}

.don-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.don-image-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px 20px 20px;
}

.don-image-overlay h4 {
    color: white;
    font-size: 1.3rem;
    margin: 0;
}

.contactbanner {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.1)), url('img/image 3.png') center/cover;
    height: 300px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    margin-top: 100px;
}

.contactbanner h1 { 
    color: #f1c40f;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 0 20px;
}

.contactcards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 5%;
}

.card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 35px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 187, 212, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #000;
}

.mt-15 { margin-top: 15px; }

.card p, .card a {
    margin: 5px 0;
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
}

.card a:hover { text-decoration: underline; }

.icon {
    font-size: 20px;
    color: #f1c40f;
    background-color: rgba(241, 196, 15, 0.1);
    margin-bottom: 15px;
    border: 1px solid #f1c40f;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.form-section {
    background-color: #00bcd4;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #0a2540;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #334155;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-container {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    padding: 40px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 250px;
}

.input-group label {
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 8px;
}

.input-group input, 
.input-group select, 
.input-group textarea {
    padding: 12px 15px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
    width: 100%;
    font-family: inherit;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    border-color: #00bcd4;
}

.captcha-container {
    margin-top: 10px;
    overflow: hidden;
}

.submit-btn {
    width: 100%;
    background-color: #fcd34d;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    margin-top: 20px;
    font-family: inherit;
}

.submit-btn:hover { background-color: #fbbf24; }

.testimonials-section {
    background-color: #1a1a1a;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    color: #fcd34d;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.testimonials-header p {
    color: #00bcd4;
    font-size: 1.1rem;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 20px rgba(255,255,255,0.05);
}

.testimonial-card .quote {
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: #e0f2fe;
    color: #0284c7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar svg {
    width: 25px;
    height: 25px;
}

.author-text h4 {
    color: #111827;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 2px;
}

.author-text span {
    color: #6b7280;
    font-size: 0.9rem;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: 0;
}

.figma-footer {
    background-color: var(--bg-footer);
    color: var(--text-main);
    padding: 60px 5% 40px;
    border-top: 5px solid var(--yellow-sun);
    font-family: 'Segoe UI', Arial, sans-serif;
    margin-top: auto;
}

.footer-container {
    max-width: 1450px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-section { flex: 0 0 300px; }
.logo-frame img {
    width: 100%;
    max-width: 250px;
    mix-blend-mode: multiply;
}

.info-column {
    flex: 1;
    min-width: 200px;
}

.info-column h4 {
    color: var(--text-main);
    margin-bottom: 30px;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 800;
    position: relative;
}

.info-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--yellow-sun);
}

.contact-list { list-style: none; }
.contact-list li { margin-bottom: 20px; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #333333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: var(--blue-oldjh);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--blue-oldjh);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.linkedin-link:hover {
    background: #0077b5;
    color: white;
    border-color: #0077b5;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
    gap: 20px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #666;
    text-decoration: none;
}

.legal-links a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-section h1 { font-size: 2.5rem; }
    .cyan-text { font-size: 3rem; }
    .nos-parcours-header h2 { font-size: 2.3rem; }
    .don-header-text h1 { font-size: 2.8rem; }
}

@media (max-width: 768px) {

    .glass-header {
        height: auto;
        padding: 15px;
        flex-direction: column;
        gap: 15px;
        position: relative;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-section {
        min-height: 500px;
        text-align: center;
    }
    
    .hero-btns { justify-content: center; }
    .hero-content h1 { font-size: 2rem; }

    .contactbanner { margin-top: 20px; }
    .contactbanner h1 { font-size: 2.2rem; }
    .form-header h2 { font-size: 2rem; }

    .don-page { padding-top: 60px; }

    .parcours-card, .reverse-card { flex-direction: column; }
    .parcours-img-side { height: 250px; }

    .soutiens-title { font-size: 1.8rem; }
    .marquee-track img { 
        height: 60px; 
        width: 120px;
        padding: 10px;
        margin: 0 15px; 
    }
    .marquee-container::before, .marquee-container::after { width: 40px; }

    .footer-container {
        justify-content: center;
        text-align: center;
    }
    .logo-section {
        flex: 0 0 100%;
        display: flex;
        justify-content: center;
    }
    .contact-item { justify-content: center; }
    .info-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .legal-links {
        flex-direction: column;
        gap: 10px;
    }
}

:root {
    --gold: #c4a468;
    --cyan-ap: #c4a468;
    --bg-black: #101a30;
    --box-dark: #121212;
    --card-navy: #161b22;
    --quote-bg: #0F172A;
    --gray-sub: #888888;
}

.apropos-main {
    background-color: var(--bg-black);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.text-gray-sub {
    color: var(--gray-sub);
}

.apropos-hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)), url('img/final.png') center/cover no-repeat;
    padding: 100px 20px 0 20px;
}

.apropos-hero span {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.apropos-hero h1 {
    font-size: 5rem;
    font-weight: 100;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #fff;
}

.genese-wrapper {
    margin-top: -120px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.genese-box {
    width: 90%;
    max-width: 1300px;
    background-color: var(--box-dark);
    border-radius: 60px 60px 0 0;
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    box-shadow: 0 -15px 30px rgba(0,0,0,0.5);
}

.genese-left span { color: var(--gold); font-size: 0.7rem; letter-spacing: 3px; font-weight: 600; }
.genese-left h2 { font-size: 3.5rem; color: var(--gold); font-weight: 200; margin-top: 15px; line-height: 1.2; }

.timeline { border-left: 0.5px solid #333; padding-left: 50px; position: relative; }
.timeline-item { position: relative; margin-bottom: 80px; }
.timeline-item h3 { color: var(--gold); font-weight: 500; margin-bottom: 10px; font-size: 1.5rem; }

.ghost-year {
    position: absolute;
    right: 0;
    top: -20px;
    font-size: 8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.philosophie {
    padding: 150px 10%;
    text-align: center;
    background-color: var(--bg-black);
}

.philosophie span { color: var(--cyan-ap); letter-spacing: 4px; font-size: 0.8rem; text-transform: uppercase; }
.philosophie h2 { font-size: 3.5rem; font-weight: 100; margin-top: 20px; color: #fff;}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 100px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pillar-card {
    background-color: var(--card-navy);
    padding: 70px 45px;
    border-radius: 40px;
    text-align: left;
    transition: transform 0.3s ease;
}

.pillar-card.middle { transform: translateY(60px); }
.pillar-card i { color: var(--cyan-ap); font-size: 1.8rem; margin-bottom: 30px; display: block; }
.pillar-card h3 { color: #fff; margin-bottom: 15px; font-size: 1.5rem; }

.quote-section {
    background-color: var(--quote-bg);
    padding: 120px 10%;
    text-align: center;
    border-top: 2px solid var(--cyan-ap);
    border-bottom: 2px solid var(--cyan-ap);
    margin: 100px 0;
}

.quote-icon {
    width: 45px;
    fill: var(--cyan-ap);
    margin-bottom: 40px;
}

.quote-section blockquote {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.5;
    max-width: 1000px;
    margin: 0 auto;
    color: #fff;
    font-style: italic;
}

.author-box {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-avatar {
    width: 55px; height: 55px;
    background: var(--cyan-ap);
    border-radius: 50%;
    margin-bottom: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.author-name { font-weight: 600; font-size: 1.1rem; color: #fff;}
.author-title { color: var(--gray-sub); font-size: 0.85rem; margin-top: 5px; }

.team { padding: 120px 10%; max-width: 1400px; margin: 0 auto; }
.team-label { color: var(--gold); letter-spacing: 4px; font-size: 1.25rem; font-weight: 600; text-transform: uppercase;}
.team h2 { font-size: 3rem; font-weight: 600; margin-top: 15px; margin-bottom: 80px; color: #fff;}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.member-card { text-align: left; }

.member-photo {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: #222;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    margin-bottom: 20px;
}

.member-card strong { display: block; font-size: 1rem; text-transform: uppercase; color: #fff; margin-bottom: 5px;}
.member-card span { color: var(--gold); font-size: 0.75rem; font-weight: 700; }


@media (max-width: 1024px) {
    .apropos-hero h1 { font-size: 3.5rem; }
    .genese-left h2 { font-size: 2.8rem; }
    .philosophie h2 { font-size: 2.8rem; }
    .quote-section blockquote { font-size: 1.5rem; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 40px;}
}

@media (max-width: 768px) {
    .apropos-hero h1 { font-size: 2.5rem; }
    .genese-wrapper { margin-top: -50px; }
    .genese-box { 
        grid-template-columns: 1fr; 
        gap: 50px; 
        padding: 60px 5%; 
        border-radius: 30px 30px 0 0;
    }
    .timeline { padding-left: 20px; }
    .ghost-year { font-size: 4rem; top: 0; }
    
    .pillar-grid { grid-template-columns: 1fr; margin-top: 50px; }
    .pillar-card.middle { transform: translateY(0); } 
    
    .team-grid { grid-template-columns: 1fr; }
    .team { padding: 60px 5%; }
}

.btn-don-header {
    background-color: #ffd100;
    color: #000000;
    padding: 12px 24px; 
    border-radius: 33px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px; 
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap; 
    transition: all 0.3s ease;
}


.btn-don-header:hover {
    background-color: #ffffff;
    transform: scale(1.05);
}


@media (max-width: 1100px) {
    .btn-don-header {
        padding: 10px 18px;
        font-size: 0.95rem;
    }
}


@media (max-width: 768px) {
    .btn-don-header {
        padding: 12px 25px;
        font-size: 1.1rem;
        margin-top: 10px;
    }
}