/* FAQ Section Enhanced Styling */
.faq-section {
    background-color: #ffffff;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.faq-title {
    color: #007bff;
    font-weight: bold;
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

.faq-group-title {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 3rem;
    padding: 1rem;
    background-color: #f0f8ff; /* Light background color for distinction */
    border-left: 5px solid #007bff; /* A bold left border for emphasis */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.faq-group-title h2 {
    font-size: 1.75rem;
    color: #023E8A; /* Consistent with your color scheme */
    font-weight: bold;
    margin: 0;
    padding-left: 1rem; /* Space between icon and text */
}

.faq-group-icon {
    font-size: 2rem;
    color: #007bff; /* Icon color matching the border */
}

.accordion-button {
    background-color: transparent;
    color: #023E8A;
    font-size: 1.25rem;
    border: none;
    text-align: left;
    padding: 1.2rem 1.5rem;
    width: 100%;
    box-shadow: none;
    position: relative; /* Ensure the icon is positioned correctly */
}

.accordion-button::after {
    content: "\203A"; /* Default ">" symbol */
    font-size: 2rem; /* Increased icon size for better visibility */
    position: absolute;
    right: 20px; /* Position icon at the end of the accordion button */
    transition: transform 0.3s ease; /* Smooth transition */
}

.accordion-button.collapsed::after {
    content: "\203A"; /* Show ">" symbol when collapsed */
    transform: rotate(0deg); /* Default rotation */
}

.accordion-button:not(.collapsed)::after {
    content: "\2212"; /* Show "-" symbol when expanded */
}

.accordion-button:not(.collapsed) {
    color: #03045E;
    background-color: #E0E0E0;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item {
    border: none;
}

.accordion-body {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    padding: 0.8rem 1.5rem 1.2rem;
    background-color: #F9F9F9;
}

.faq-group-title {
    font-size: 1.75rem;
    color: #0056b3;
    font-weight: bold;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.accordion-button, .accordion-body {
    transition: all 0.3s ease;
}
