.support-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.support-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #4facfe;
}

.support-card h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.support-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Support Contact Styles */
.support-contact {
    margin: 1.5rem 0;
    text-align: center;
}

.support-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.support-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #fff;
}

.support-button i {
    font-size: 1.2rem;
}

.support-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    border-radius: 0 5px 5px 0;
    color: #ffc107 !important;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .support-section {
        padding: 4rem 1rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem 0;
    }

    .support-card {
        padding: 1.5rem;
    }

    .support-card:hover {
        transform: translateY(-3px);
    }

    .support-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .support-note {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
} 