.about-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.about-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 45%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
    box-sizing: border-box;
}

.about-card h3 {
    color: #0056b3;
    margin-top: 0;
}

.about-card ul {
    list-style: disc;
    margin-left: 20px;
}

.about-card ul li {
    margin-bottom: 5px;
}

/* Responsivo */
@media (max-width: 768px) {
    .about-card {
        width: 90%;
    }
}
