.faq-banner {
    background-color: var(--ust-gold);
    padding: 140px 0;
    text-align: left;
}

.faq-title {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: black;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Accordion */
.accordion-item {
    border: none;
    border-bottom: 1px solid #333;
    border-radius: 0 !important;
    background-color: transparent;
}

.accordion-button {
    font-weight: 700;
    font-size: 1.1rem;
    color: black;
    background-color: transparent;
    padding: 20px 0;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: black;
    background-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-90deg);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
}

.accordion-body {
    background-color: #e9ecef;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

/* Sidebar Card */
.sidebar-card {
    background-color: #e9ecef;
    border-radius: 20px;
    padding: 30px;
    position: sticky;
    top: 140px;
}

.sidebar-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-dark-pill {
    background-color: black;
    color: white;
    border-radius: 50px;
    padding: 8px 25px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity 0.3s;
}

.btn-dark-pill:hover {
    opacity: 0.8;
    color: white;
}

.chat-icon-container {
    margin-top: 20px;
    text-align: right;
    color: #555;
}

.chat-icon-container i {
    font-size: 6rem;
    color: #444;
}

.chat-icon-container {
    margin-top: 20px;
    text-align: right;
    color: #555;
}

.chat-icon-container i {
    font-size: 6rem;
    color: #444;
}


/* --- Mobile Phones --- */
@media (max-width: 576px) {
    .faq-banner {
        padding: 40px 0;
        text-align: left;
    }

    .faq-title{
        font-size: 2.5rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 25px 0;
        padding-right: 45px; 
    }

    .accordion-body {
        font-size: 0.9rem;
        padding: 30px;
        background-color: #f0f2f5; 
        max-width: 100%;
        overflow-wrap: break-word; 
        word-wrap: break-word;
        word-break: break-word; 
    }

    .accordion-body a {
        display: inline-block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; 
        vertical-align: middle;
    }
    

    .sidebar-card {
        padding: 40px;
        margin-top: 50px; 
    }

    .chat-icon-container i {
        font-size: 4rem;
    }
}