
    body {
        background: #f9fafb;
        font-family: 'Helvetica Neue', Arial, sans-serif;
    }

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

    .support-header h1 {
        font-weight: 600;
    }

    .faq-section h2 {
        margin-bottom: 20px;
        font-weight: 600;
    }

    .card-header {
        background: #fff;
        border: none;
        padding: 0.75rem 1rem;
    }

    .btn-link {
        font-weight: 500;
        color: #007bff;
        text-decoration: none;
    }

    .btn-link:hover {
        text-decoration: underline;
    }

    /* Support Cards */
    .support-card {
        background: #fff;
        border: 1px solid #eaeaea;
        border-radius: 12px;
        padding: 20px;
        transition: box-shadow 0.2s ease, transform 0.2s ease;
        height: 100%;
    }

    .support-card:hover {
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        transform: translateY(-2px);
    }

    .support-card h5 {
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .support-card p {
        font-size: 0.9rem;
        color: #6c757d;
        margin-bottom: 0;
    }

    .icon-circle {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 12px;
        font-size: 18px;
        color: #fff;
    }

    .icon-green {
        background: #28a745;
    }

    .icon-red {
        background: #dc3545;
    }

    .icon-blue {
        background: #007bff;
    }

    .icon-pink {
        background: #e83e8c;
    }

    .icon-gray {
        background: #6c757d;
    }

    .icon-orange {
        background: #fd7e14;
    }

    /* Contact Box */
    .contact-box {
        border-radius: 12px;
        padding: 25px;
        background: linear-gradient(135deg, #667eea, #764ba2);
        color: #fff;
    }

    .contact-box label {
        color: #fff;
        font-weight: 500;
    }

    .tag-btn {
        margin: 3px 5px 3px 0;
        border-radius: 20px;
        padding: 4px 12px;
        font-size: 13px;
    }

    .contact-box .form-control {
        border-radius: 8px;
    }

    .btn-dark {
        border-radius: 8px;
        font-weight: 600;
        background: #1a1a1a;
        border: none;
    }

    .btn-dark:hover {
        background: #000;
    }
