/* ===== RESET ET STYLES DE BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}



/* ===== HEADER ET NAVIGATION ===== */
header {
    background-color: #2c5530;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.donate-btn {
    background-color: #4a7c59;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}



/* ===== FOOTER ===== */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-section p, .footer-section a {
    color: #ccc;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
    font-size: 0.9em;
}



/* ===== COMPOSANTS RÉUTILISABLES ===== */

/* Boutons */
.btn {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1em;
    border: 2px solid transparent;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
}

.btn:active::after {
    width: 100px;
    height: 100px;
}

.btn-primary {
    background-color: #2c5530;
    color: white;
}

.btn-primary:hover {
    background-color: #1e5c32;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

.btn-secondary {
    background-color: #4a7c59;
    color: white;
}

.btn-secondary:hover {
    background-color: #3a6c49;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.3);
}


/* Formulaires */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c5530;
    font-weight: bold;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group-full {
    position: relative;
    margin-bottom: 20px;
}

.form-group-full label {
    display: block;
    margin-bottom: 8px;
    color: #2c5530;
    font-weight: bold;
    transition: all 0.3s ease;
    transform-origin: left center;
}

.form-group-full input, .form-group-full select, .form-group-full textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

.form-group-full.focused label {
    color: #2c5530;
    transform: translateY(-25px) scale(0.8);
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #2c5530 !important;
    box-shadow: 0 0 0 2px rgba(44, 85, 48, 0.1);
}



/* ===== SECTIONS COMMUNES À TOUTES LES PAGES ===== */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e8f4ea 0%, #c8e6c9 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
    color: #2c5530;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 1.2em;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}


/* Page Header (pour pages internes) */
.page-header {
    background: linear-gradient(135deg, #e8f4ea 0%, #c8e6c9 100%);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: #2c5530;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.page-header p {
    color: #555;
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto;
}

.page-content {
    padding: 60px 0;
}


/* CTA Section */
.cta {
    background-color: #2c5530;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 2em;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1em;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta .btn {
    background-color: white;
    color: #2c5530;
}



/* ===== PAGE ACCUEIL (index.html) ===== */

/* Stats Section */
.stats {
    background-color: #f8f9fa;
    padding: 50px 0;
    text-align: center;
}

.stats h2 {
    color: #2c5530;
    margin-bottom: 10px;
}

.stats > p {
    color: #666;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    color: #2c5530;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9em;
    margin-top: 10px;
}


/* Process Section */
.process {
    padding: 80px 0;
    background-color: white;
}

.process h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 2em;
}

.process > p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1em;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.process-step h3 {
    color: #2c5530;
    margin: 20px 0 15px;
    font-size: 1.3em;
}

.process-step p {
    color: #666;
    line-height: 1.6;
}


/* Testimonial Section */
.testimonial {
    background-color: #e8f4ea;
    padding: 60px 0;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.3em;
    color: #2c5530;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    color: #4a7c59;
    font-weight: bold;
    font-style: normal;
}


/* News Section */
.news {
    padding: 80px 0;
    background-color: white;
}

.news h2 {
    text-align: center;
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 2em;
}

.news > p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    border-left: 4px solid #2c5530;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.news-card h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9em;
}

.news-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}


/* Partners Section */
.partners {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.partners h2 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 2em;
}

.partners > p {
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1em;
}

.partners-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto 40px;
    max-width: 1200px;
}

.partners-track {
    display: flex;
    animation: slidePartners 30s linear infinite;
    gap: 2rem;
    padding: 1rem 0;
}

.partner-item {
    flex: 0 0 200px;
    background: white;
    padding: 2rem 1rem;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #e8f4ea;
    text-align: center;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #2c5530;
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.partner-logo img {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-item:hover .partner-logo img {
    filter: grayscale(0%);
}

.partner-item h4 {
    color: #2c5530;
    margin-bottom: 0.5rem;
    font-size: 1.1em;
    font-weight: bold;
}

.partner-item p {
    color: #666;
    font-size: 0.9em;
    margin: 0;
    line-height: 1.4;
}

.partners-cta {
    margin-top: 2rem;
}



/* ===== PAGE MISSIONS (missions.html) ===== */
.missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.mission-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2c5530;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mission-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission-card h3 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.mission-stats {
    margin: 20px 0;
}

.mission-stat {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.mission-stat:last-child {
    border-bottom: none;
}


/* FAQ Accordéon */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2c5aa0;
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 20px 0;
    margin: 0;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    color: #2c5aa0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}



/* ===== PAGE ACTIONS (actions.html) ===== */
.filters {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c5530;
    font-weight: bold;
}

.filter-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.action-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.action-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9em;
}

.action-card h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.action-card p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}


/* Section Devenir Bénévole */
.volunteer-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
}

.volunteer-form h2 {
    color: #2c5530;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2c5530;
    font-weight: bold;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}



/* ===== PAGE ÉQUIPE (equipe.html) ===== */
.team-section {
    margin-bottom: 60px;
}

.team-section h2 {
    color: #2c5530;
    margin-bottom: 30px;
    text-align: center;
    font-size: 2em;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-member:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: #2c5530;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.team-member .role {
    color: #4a7c59;
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.team-member p {
    color: #555;
    line-height: 1.6;
}

.values-section {
    background: #e8f4ea;
    padding: 50px;
    border-radius: 8px;
    margin-top: 60px;
}

.values-section h2 {
    color: #2c5530;
    margin-bottom: 30px;
    text-align: center;
}

.values-list {
    list-style: none;
}

.values-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.values-list li:before {
    content: "•";
    color: #2c5530;
    font-weight: bold;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}



/* ===== PAGE HISTOIRE (histoire.html) ===== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 60px;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #2c5530;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    width: 50%;
    padding: 0 40px;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    background-color: #e8f4ea;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.02);
}

.timeline-content:after {
    content: '';
    position: absolute;
    top: 25px;
    width: 20px;
    height: 20px;
    background-color: #2c5530;
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content:after {
    right: -50px;
}

.timeline-item:nth-child(even) .timeline-content:after {
    left: -50px;
}

.comparison-section {
    margin: 60px 0;
}

.comparison-section h2 {
    color: #2c5530;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.comparison-table th {
    background-color: #2c5530;
    color: white;
    font-weight: bold;
}

.comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.roadmap-section {
    margin-top: 60px;
}

.roadmap-section h2 {
    color: #2c5530;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
}

.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.roadmap-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2c5530;
}

.roadmap-card h3 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.roadmap-card ul {
    list-style: none;
}

.roadmap-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.roadmap-card li:before {
    content: "•";
    color: #2c5530;
    font-weight: bold;
    position: absolute;
    left: 0;
}



/* ===== PAGE CONTACT (contact.html) ===== */
.contact-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 30px 0;
}

.privacy-check input {
    margin-top: 3px;
}

.privacy-check label {
    color: #555;
    font-size: 0.9em;
}

.submit-btn {
    background-color: #2c5530;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.contact-info {
    background: #e8f4ea;
    padding: 40px;
    border-radius: 8px;
    height: fit-content;
}

.contact-info h3 {
    color: #2c5530;
    margin-bottom: 25px;
    font-size: 1.3em;
}

.contact-detail {
    margin-bottom: 25px;
}

.contact-detail h4 {
    color: #2c5530;
    margin-bottom: 8px;
    font-size: 1em;
}

.contact-detail p {
    color: #555;
    margin: 0;
}

.contact-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    margin-top: 30px;
    font-size: 0.9em;
    color: #666;
}



/* ===== PAGES D'ACTIONS SPÉCIFIQUES ===== */

/* Header des pages d'actions */
.action-header {
    background: linear-gradient(135deg, #e8f4ea 0%, #c8e6c9 100%);
    padding: 60px 0;
    text-align: center;
}

.action-header h1 {
    color: #2c5530;
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.action-header p {
    color: #555;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Contenu principal des pages d'actions */
.action-content {
    max-width: 1000px;
    margin: 0 auto 60px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid #e8f4ea;
    margin-top: 70px;

}

.action-hero {
    height: 300px;
    overflow: hidden;
}

.action-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.action-body {
    padding: 40px;
}


/* Métadonnées */
.action-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e8f4ea;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 1em;
}

.meta-item .icon {
    color: #2c5530;
    font-size: 1.2em;
}


/* Description */
.action-description h1 {
    color: #2c5530;
    margin-bottom: 1.5rem;
    font-size: 2em;
    line-height: 1.3;
}

.action-description p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1em;
}


/* Statistiques */
.action-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #2c5530;
}

.stat {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.2em;
    font-weight: bold;
    color: #2c5530;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.9em;
    color: #666;
    margin-top: 0.8rem;
    line-height: 1.3;
}


/* CTA */
.action-cta {
    background: linear-gradient(135deg, #e8f4ea 0%, #c8e6c9 100%);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 2.5rem 0;
    text-align: center;
    border: 2px solid #c8e6c9;
}

.action-cta h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.4em;
}

.action-cta p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1em;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}


/* Section actions similaires */
.related-section {
    margin: 4rem 0;
}

.related-section h2 {
    color: #2c5530;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2em;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.action-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8f4ea;
    cursor: pointer;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-image {
    height: 180px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.action-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: #2c5530;
    margin-bottom: 1rem;
    font-size: 1.3em;
    line-height: 1.3;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.card-date, .card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9em;
    color: #666;
}

.card-description {
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2c5530;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
    font-size: 0.95em;
}

.card-link:hover {
    gap: 0.8rem;
    color: #1e5c32;
}



/* ===== PAGES LÉGALES (mentions-legales.html, confidentialite.html) ===== */
.legal-content, .privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-section, .privacy-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8f4ea;
}

.legal-section:last-child, .privacy-section:last-child {
    border-bottom: none;
}

.legal-section h2, .privacy-section h2 {
    color: #2c5530;
    margin-bottom: 30px;
    font-size: 1.8em;
    position: relative;
    padding-left: 20px;
}

.legal-section h2::before, .privacy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #4a7c59;
    border-radius: 50%;
}


/* Grilles légales */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.legal-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2c5530;
}

.legal-item h3 {
    color: #2c5530;
    margin-bottom: 15px;
    font-size: 1.2em;
}


/* Cartes légales */
.legal-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e8f4ea;
}

.legal-highlight {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border-left: 4px solid #4a7c59;
}

.legal-highlight h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

.legal-highlight ul {
    list-style: none;
    padding: 0;
}

.legal-highlight li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.legal-highlight li:before {
    content: '•';
    color: #4a7c59;
    position: absolute;
    left: 0;
}


/* Statistiques légales */
.legal-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.legal-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.legal-stat .stat-number {
    font-size: 2em;
    font-weight: bold;
    color: #2c5530;
    display: block;
}

.legal-stat .stat-label {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}


/* Cookies */
.cookies-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.cookie-type {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.cookie-type h4 {
    color: #2c5530;
    margin-bottom: 10px;
}

.cookie-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: bold;
    margin-top: 10px;
}

.cookie-status.obligatoire {
    background: #e8f4ea;
    color: #2c5530;
}

.cookie-status.optionnel {
    background: #fff3cd;
    color: #856404;
}


/* Notices légales */
.legal-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 20px;
    margin-top: 20px;
}

.legal-notice h4 {
    color: #856404;
    margin-bottom: 10px;
}


/* Actions légales */
.legal-actions {
    text-align: center;
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Styles spécifiques confidentialité */
.privacy-intro {
    text-align: center;
    margin-bottom: 50px;
}

.privacy-badge {
    background: linear-gradient(135deg, #e8f4ea 0%, #c8e6c9 100%);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.badge-icon {
    font-size: 3em;
    display: block;
    margin-bottom: 20px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.principle-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-5px);
}

.principle-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.principle-card h4 {
    color: #2c5530;
    margin-bottom: 15px;
}


/* Types de données */
.data-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.data-type {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4a7c59;
}

.data-type h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

.data-type ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.data-type li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.data-type li:before {
    content: '✓';
    color: #4a7c59;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.data-purpose {
    display: inline-block;
    background: #e8f4ea;
    color: #2c5530;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    font-weight: bold;
}


/* Utilisation des données */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.usage-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.usage-item h4 {
    color: #2c5530;
    margin-bottom: 10px;
}

.usage-frequency {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e8f4ea;
    color: #2c5530;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7em;
    font-weight: bold;
}


/* Partage des données */
.sharing-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.sharing-status {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px;
    background: white;
    border-radius: 8px;
}

.status-no {
    font-size: 3em;
    display: block;
    margin-bottom: 15px;
}

.sharing-exceptions {
    background: white;
    padding: 25px;
    border-radius: 8px;
}

.exception-item {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.exception-item:last-child {
    border-bottom: none;
}

.exception-item strong {
    color: #2c5530;
}


/* Droits utilisateur */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.right-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.right-card h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

.right-time {
    display: inline-block;
    background: #4a7c59;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    margin-top: 10px;
}

.rights-actions {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


/* Sécurité */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.security-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #2c5530;
}

.security-item h4 {
    color: #2c5530;
    margin-bottom: 10px;
}


/* Contact DPO */
.privacy-contact {
    margin: 50px 0;
}

.contact-card {
    background: linear-gradient(135deg, #e8f4ea 0%, #c8e6c9 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.contact-info {
    margin-top: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    display: inline-block;
}


/* Actions finales */
.privacy-actions {
    text-align: center;
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}



/* ===== ANIMATIONS ET EFFETS ===== */

/* Animations de base */
body:not(.loaded) * {
    transition: none !important;
}

header.visible {
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero.visible {
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Animation partenaires */
@keyframes slidePartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 8 - 2rem * 8));
    }
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}


/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


/* Pulse animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(44, 85, 48, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(44, 85, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(44, 85, 48, 0);
    }
}


/* Confetti */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #4CAF50;
    opacity: 0;
    z-index: 1000;
    animation: confettiFall 3s ease-in-out;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Animation partenaires infinie */
@keyframes slidePartnersInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 8 - 2rem * 8));
    }
}

.partners-track {
    animation: slidePartnersInfinite 45s linear infinite;
}

/* Pause animation on hover */
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* Responsive animations partenaires */
@media (max-width: 768px) {
    @keyframes slidePartnersInfiniteMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 8 - 1.5rem * 8));
        }
    }
    
    .partners-track {
        animation: slidePartnersInfiniteMobile 40s linear infinite;
    }
}

@media (max-width: 480px) {
    @keyframes slidePartnersInfiniteSmall {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 8 - 1rem * 8));
        }
    }
    
    .partners-track {
        animation: slidePartnersInfiniteSmall 35s linear infinite;
    }
}


/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-content:after {
        left: -40px !important;
    }
    
    .stats-grid, .process-steps, .news-grid, .missions-grid, .actions-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    
    .action-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card, .news-card, .mission-card, .action-card, .team-member {
        transform: none !important;
    }
    
    .btn:hover {
        transform: none !important;
    }
    
    .legal-grid, .principles-grid, .data-types, .usage-grid, .rights-grid, .security-measures {
        grid-template-columns: 1fr;
    }
    
    .legal-actions, .rights-actions, .privacy-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .legal-section h2, .privacy-section h2 {
        font-size: 1.5em;
    }
    
    .legal-card, .privacy-badge, .contact-card {
        padding: 20px;
    }
    
    .partners-track {
        animation: slidePartnersMobile 25s linear infinite;
        gap: 1.5rem;
    }
    
    .partner-item {
        flex: 0 0 150px;
        padding: 1.5rem 0.8rem;
    }
    
    .partner-logo {
        height: 60px;
        margin-bottom: 0.8rem;
    }
    
    .partner-logo img {
        max-height: 50px;
        max-width: 100px;
    }
    
    .partner-item h4 {
        font-size: 1em;
    }
    
    .partner-item p {
        font-size: 0.8em;
    }
    
    @keyframes slidePartnersMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-150px * 8 - 1.5rem * 8));
        }
    }
}

@media (max-width: 480px) {
    .action-stats {
        grid-template-columns: 1fr;
    }
    
    .action-content {
        margin-bottom: 40px;
    }
    
    .partners-track {
        animation: slidePartnersSmall 20s linear infinite;
        gap: 1rem;
    }
    
    .partner-item {
        flex: 0 0 120px;
        padding: 1rem 0.5rem;
    }
    
    .partner-logo {
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .partner-logo img {
        max-height: 40px;
        max-width: 80px;
    }
    
    .partner-item h4 {
        font-size: 0.9em;
    }
    
    .partner-item p {
        font-size: 0.75em;
    }
    
    @keyframes slidePartnersSmall {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-120px * 8 - 1rem * 8));
        }
    }
}



/* ===== STYLES SPÉCIFIQUES PAGE DE DON ===== */

.donation-content {
    max-width: 1200px;
    margin: 0 auto;
}


/* Section d'impact */
.impact-section {
    text-align: center;
    margin-bottom: 60px;
}

.impact-section h2 {
    color: #2c5530;
    margin-bottom: 40px;
    font-size: 2em;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.impact-card {
    background: linear-gradient(135deg, #e8f4ea 0%, #c8e6c9 100%);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.impact-amount {
    font-size: 2em;
    font-weight: bold;
    color: #2c5530;
    margin-bottom: 10px;
}

.impact-description {
    color: #555;
    font-size: 0.9em;
    line-height: 1.4;
}


/* Conteneur principal du don */
.donation-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

@media (max-width: 968px) {
    .donation-container {
        grid-template-columns: 1fr;
    }
}


/* Formulaire de don */
.donation-form-container {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e8f4ea;
}

.donation-form-container h2 {
    color: #2c5530;
    margin-bottom: 30px;
    text-align: center;
    font-size: 1.8em;
}

.donation-form-container h3 {
    color: #2c5530;
    margin-bottom: 20px;
    font-size: 1.2em;
}


/* Sélection du montant */
.amount-selection {
    margin-bottom: 30px;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.amount-btn {
    padding: 15px 10px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.amount-btn:hover {
    border-color: #4a7c59;
    background: #f8f9fa;
}

.amount-btn.active {
    border-color: #2c5530;
    background: #2c5530;
    color: white;
}

.custom-amount {
    margin-top: 15px;
}

.custom-amount input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1.1em;
    text-align: center;
}

.custom-amount input:focus {
    border-color: #2c5530;
    outline: none;
}


/* Sélection de la fréquence */
.frequency-selection {
    margin-bottom: 30px;
}

.frequency-buttons {
    display: flex;
    gap: 15px;
}

.frequency-btn {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.frequency-btn:hover {
    border-color: #4a7c59;
    background: #f8f9fa;
}

.frequency-btn.active {
    border-color: #2c5530;
    background: #2c5530;
    color: white;
}


/* Informations personnelles */
.personal-info {
    margin-bottom: 30px;
}

.form-group-half {
    flex: 1;
}

.form-group-half label {
    display: block;
    margin-bottom: 8px;
    color: #2c5530;
    font-weight: bold;
}

.form-group-half input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
}


/* Méthodes de paiement */
.payment-method {
    margin-bottom: 30px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #4a7c59;
    background: #f8f9fa;
}

.payment-option input[type="radio"] {
    margin-right: 15px;
}

.payment-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin: 0;
    font-weight: normal;
}

.payment-icon {
    font-size: 1.5em;
    margin-right: 10px;
}


/* Informations de carte */
.card-info {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
}


/* Information fiscale */
.tax-info {
    margin-bottom: 30px;
}

.tax-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
}

.tax-icon {
    font-size: 2.5em;
    margin-right: 20px;
}

.tax-content h4 {
    color: #856404;
    margin-bottom: 5px;
}

.tax-content p {
    color: #856404;
    margin: 0;
    font-size: 0.9em;
}


/* Validation du don */
.donation-validation {
    text-align: center;
}

.donate-submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #2c5530 0%, #4a7c59 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

.donate-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 85, 48, 0.3);
}

.donate-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    font-size: 0.9em;
}

.security-icon {
    font-size: 1.2em;
}


/* Récapitulatif */
.donation-summary {
    position: sticky;
    top: 20px;
}

.summary-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e8f4ea;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.summary-card h3 {
    color: #2c5530;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5em;
}

.summary-details {
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item.total {
    font-weight: bold;
    font-size: 1.2em;
    color: #2c5530;
    border-bottom: none;
    border-top: 2px solid #e8f4ea;
    margin-top: 10px;
}

.impact-preview {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.impact-preview h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

.impact-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 0.9em;
}

.tax-preview {
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.tax-preview h4 {
    color: #2c5530;
    margin-bottom: 15px;
}

.tax-calculation {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
}

.tax-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9em;
}

.tax-line.total {
    font-weight: bold;
    color: #2c5530;
    border-top: 1px solid #e0e0e0;
    margin-top: 8px;
    padding-top: 12px;
}


/* Autres moyens de donner */
.other-ways-section {
    margin-bottom: 60px;
}

.other-ways-section h2 {
    color: #2c5530;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
}

.other-ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.other-way-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8f4ea;
    transition: transform 0.3s ease;
}

.other-way-card:hover {
    transform: translateY(-5px);
}

.way-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.other-way-card h3 {
    color: #2c5530;
    margin-bottom: 15px;
}

.other-way-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}


/* Témoignages donateurs */
.donor-testimonials {
    margin-bottom: 60px;
}

.donor-testimonials h2 {
    color: #2c5530;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, #e8f4ea 0%, #c8e6c9 100%);
    padding: 30px;
}