.aides-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
    background-color: #FFFFFF;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-family: Montserrat, sans-serif;
    color: #000000;
}

.aides-title {
    font-size: 2rem;
    font-weight: bold;
    color: #10367A;
    margin-bottom: 40px;
}

.aides-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.aides-card {
    background-color: #D3D3D3;
    border-radius: 16px;
    padding: 30px 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.aides-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #10367A;
    margin-bottom: 15px;
}

.aides-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

.aides-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #10367A;
    color: #FFFFFF;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.aides-btn:hover {
    background-color: #FE5716;
    color: #FFFFFF;
}

@media screen and (max-width: 768px) {
    .aides-cards {
        flex-direction: column;
        align-items: center;
    }

    .aides-card {
        max-width: 100%;
    }
}