
    /* --- HEADER SECTION --- */
    .support-hero {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        color: white;
        padding: 80px 0;
        text-align: center;
        margin-bottom: 0;
    }

    .support-hero h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 15px;
    }

    /* --- CARDS SECTION --- */
    .support-container {
        margin-top: -50px;
        position: relative;
        z-index: 10;
    }

    .support-card {
        background: #ffffff;
        border: none;
        border-radius: 20px;
        padding: 40px 30px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
        text-decoration: none !important;
        display: block;
    }

    .support-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(52, 152, 219, 0.2);
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        background: rgba(52, 152, 219, 0.1);
        color: #3498db;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin: 0 auto 25px auto;
        transition: 0.3s;
    }

    .support-card:hover .icon-circle {
        background: #3498db;
        color: #ffffff;
    }

    .support-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 15px;
    }

    .support-card p {
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
        padding: 80px 0;
        background-color: #f8fafc;
    }

    .faq-title {
        text-align: center;
        font-weight: 800;
        color: #1e293b;
        margin-bottom: 50px;
    }

    .accordion-item {
        border: none;
        margin-bottom: 15px;
        border-radius: 12px !important;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    }

    .accordion-button {
        font-weight: 600;
        color: #334155;
        padding: 20px;
    }

    .accordion-button:not(.collapsed) {
        background-color: rgba(52, 152, 219, 0.05);
        color: #3498db;
        box-shadow: none;
    }

    .accordion-button:focus {
        box-shadow: none;
    }

    .faq-icon {
        margin-right: 15px;
        color: #3498db;
    }

    .contact-cta {
        background-color: #ffffff;
        border: 2px dashed #3498db;
        border-radius: 20px;
        padding: 40px;
        text-align: center;
        margin-top: 60px;
    }
