       .support-header {
        text-align: center;
       padding-top: 45px;
    }

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

    .faq-section h2 {
        margin-bottom: 10px;
        font-weight: 600;
        font-size: 22px;
    }

    .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); */
        background: #ddd;
        color: #fff;
    }

    .contact-box label {
        color: #000;
        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;
    }


    .accordion {
        max-width: 600px;
        margin: auto;
        font-family: Arial, sans-serif;
    }

    .acc-item {
        border: 1px solid #ddd;
        border-radius: 6px;
        margin-bottom: 8px;
        overflow: hidden;
    }

    .acc-title {
        width: 100%;
        padding: 14px;
        background: #374a74;
        border: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 15px;
        font-weight: 400;
        color: #fff;
    }

    .btn-light:hover {
        color: #fff !important;
    }

    .icon {
        width: 10px;
        height: 10px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
    }

    .acc-item.active .icon {
        transform: rotate(-135deg);
    }

    .acc-content {
        max-height: 0;
        overflow: hidden;
        padding: 0 14px;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .acc-item.active .acc-content {
        max-height: 200px;
        padding: 14px;
    }

    .pnb p {
        margin-bottom: 7px !important;
    }

    .pnb li {
        font-size: 14px;
        line-height: 25px;
    }


    .pnb li i {
        color: #374a74 !important;
    }

    p#friend-request-count {
        font-size: 12px;
    }


    /* Mobile responsive */
    @media (max-width: 576px) {
        .acc-title {
            font-size: 15px;
            padding: 12px;
        }

        .faq-section h2 {
            font-size: 18px;
        }

        .text-muted {
            font-size: 15px;
        }

        .support-header h1 {
            font-size: 20px;
        }

        .bodi {
            font-size: 20px;
        }

        .contact-box .form-control {
            margin-bottom: 10px;
        }

        .tag-btn {
            font-size: 12px;
        }

    }












