.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.card {
    flex: 1;
    max-width: 500px; /* Increased size */
    min-height: 300px; /* Adjusts for better layout */
    padding: 20px; /* More spacing inside the cards */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

i {
    font-size: 70px; /* Slightly larger icon */
    margin-bottom: 15px;
    color:rgb(199, 158, 78);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        max-width: 90%; /* Makes it take most of the screen on small devices */
    }
}
