.support-section {
    padding: 60px 20px;
    text-align: center;
}

.support-container {
    max-width: 1200px;
    margin: auto;
}

.support-title {
    font-size: 32px;
    color: var(--dark-charcoal);
    margin-bottom: 10px;
}

.support-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 40px;
}

.support-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.support-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    flex: 1 1 280px;
    max-width: 340px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Icon animation keyframes */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.support-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.1));
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Stagger icon animation delays */
.support-card:nth-child(1) .support-icon {
    animation-delay: 0.1s;
}

.support-card:nth-child(2) .support-icon {
    animation-delay: 0.2s;
}

.support-card:nth-child(3) .support-icon {
    animation-delay: 0.3s;
}

.support-card:nth-child(4) .support-icon {
    animation-delay: 0.4s;
}

.support-card:nth-child(5) .support-icon {
    animation-delay: 0.5s;
}

.support-card:nth-child(6) .support-icon {
    animation-delay: 0.6s;
}

.support-text {
    margin-bottom: 20px;
}
