.card-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 65%;
    margin: auto;
    margin-top: 2rem;
    margin-bottom: 4rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 2rem;
    margin: 1rem;
    flex: 1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.card-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.card-description {
    font-size: 1.2rem;
    text-align: center;
    color: var(--light-gray);
}

.card-icon {
    width: 6rem;
    margin-bottom: 1rem;
}