/* Titre principal */
.page-title {
    font-size: 2em;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-align: center;
}

/* Section générale */
.about-section {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    line-height: 1.8em;
}

.about-section h2 {
    font-size: 1.8em;
    color: var(--primary-green);
    margin-bottom: 15px;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 5px;
}

.about-section p {
    font-size: 1.1em;
    color: #333;
}

/* Section Don */
.donation {
    text-align: center;
    margin-top: 20px;
}

.donation-link {
    display: inline-block;
    padding: 15px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    background-color: var(--primary-green);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.donation-link:hover {
    background-color: #006644;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8em;
    }

    .about-section h2 {
        font-size: 1.6em;
    }

    .donation-link {
        font-size: 1em;
        padding: 10px 20px;
    }
}
