/* Styles pour les programmes écologiques */
.eco-programs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
    justify-content: center;
}

.eco-program {
    flex: 1;
    min-width: 350px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    padding: 30px;
    text-align: center;
}

.eco-program:hover {
    transform: translateY(-5px);
}

.program-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #4caf50;
}

.eco-sea .program-icon {
    color: #00796b;
}

.program-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2e7d32;
}

.eco-sea .program-title {
    color: #00796b;
}

.program-description {
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
}

.program-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.program-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-donate {
    background: linear-gradient(to right, #388e3c, #4caf50);
    color: white;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.btn-donate:hover {
    background: linear-gradient(to right, #2e7d32, #43a047);
    box-shadow: 0 6px 12px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

.btn-ask {
    background: white;
    color: #388e3c;
    border: 2px solid #4caf50;
}

.btn-ask:hover {
    background: #f1f8e9;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.impact-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin: 40px 0;
    text-align: center;
}

.impact-title {
    color: #2e7d32;
    margin-bottom: 30px;
    font-size: 2rem;
}

.impact-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.stat {
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #388e3c;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .eco-program {
        min-width: 100%;
    }
    
    .program-actions {
        flex-direction: column;
    }
    
    .impact-stats {
        flex-direction: column;
    }
    
    .program-btn {
        width: 100%;
    }
}