    .faq-item {
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .faq-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    }
    .card-header {
        border-bottom: 1px solid #e5e5e5;
        border-radius: 12px 12px 0 0;
        padding: 0;
    }
    .faq-title {
        background-color: #fff;
    }
    .faq-title h2 {
        font-size: 18px;
    }
    .card-body {
        background-color: #f8f9fa;
        border-radius: 0 0 5px 5px;
    }
    .faq-toggle {
        text-align: left;
        padding: 1rem 1.25rem;
        font-size: 1.1rem;
        font-weight: 500;
        color: #333;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: none;
        border: none;
        outline: none;
        transition: background-color 0.2s ease;
    }
    .faq-toggle:hover {
        background-color: #f1f1f1;
    }
    .faq-icon {
        font-size: 1.25rem;
        transition: transform 0.3s ease;
    }
.faq-toggle[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    color: #0d6efd;
}

    .btn-outline-primary.active,
    .btn-outline-primary:hover {
        background-color: #0d6efd;
        color: white;
        border-color: #0d6efd;
    }
    .btn-outline-primary {
        border-radius: 20px;
        transition: all 0.2s ease;
    }
    .btn-group {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* For smooth scrolling on iOS */
}

.btn-group .btn {
    flex-shrink: 0; /* Prevent button shrinking */
}

    #loadMore {
        border-radius: 25px;
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }
    #loadMore:hover {
        background-color: #0b5ed7;
        transform: scale(1.05);
    }