body {
    font-family: 'Arial', sans-serif !important;
}

.faq-title {
    font-size: 3rem !important;
    margin-bottom: 2rem !important;
    color: whitesmoke !important;
    text-align: center !important;
    font-weight: bold !important;
}

.accordion {
    /* border-top: 1px solid #ddd !important; */
}

.faq-item {
    /* border-bottom: 1px solid #ddd !important; */
}

.faq-question {
    padding: 1rem !important;
}

.btn {
    font-weight:600 !important;
}

.btn-link {
    font-size: 1.25rem !important;
    color: whitesmoke !important;
    text-decoration: none !important;
    padding: 0 !important;
    text-align: left !important;  /* Ensures text is left-aligned */
    width: 100%; /* Ensures the button takes up the full width */
    display: block; /* Makes the button a block element */
}


.btn-link:hover {
    color: #156A94 !important;
}

.faq-answer {
    font-size: 1rem !important;
    color: whitesmoke !important;
    padding: 1rem !important;
    /* border-top: 1px solid #ddd !important; */
    background-color: transparent !important;
}

.faq-item .faq-answer {
    margin-left: 1.5rem !important;
}


.collapse {
    border: none !important; /* Removes any borders around collapsible content */
    box-shadow: none !important; /* Removes any box shadows */
    border-top: none !important; /* Removes top border specifically */
}


/* New rules added below */
.collapse,
.collapse.show {
    border: none !important; /* Removes any borders around collapsible content */
    box-shadow: none !important; /* Removes any box shadows */
    border-top: none !important; /* Removes top border specifically */
    background-color: transparent !important; /* Ensures the background is transparent */
    outline: none !important; /* Removes any outlines */
}

.collapse:not(.show) {
    display: none;
}