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

.faq-title {
    color: #007bff; /* Bold blue for an attractive header */
    font-weight: bold;
    font-size: 2.25rem; /* Emphasized font size for the header */
    margin-bottom: 2rem; /* Ample space below the title for clarity */
}

.accordion-button {
    background-color: transparent; /* Transparent background for a clean look */
    color: #023E8A; /* Deep blue for contrast and readability */
    font-size: 1.25rem; /* Adequately large font size for questions */
    border: none; /* No borders for a seamless appearance */
    text-align: left; /* Align text to the left for better readability */
    padding: 1.2rem 1.5rem; /* Generous padding for a spacious layout */
    width: 100%; /* Ensure buttons take full width for a cleaner line */
    box-shadow: none; /* No shadows for a flat design preference */
}

.accordion-button:not(.collapsed) {
    color: #03045E; /* Dark blue when active for better focus */
    background-color: #E0E0E0; /* Very light gray background when active */
}

.accordion-button:focus {
    box-shadow: none; /* Removing focus shadow for a cleaner look */
}

.accordion-item {
    border: none; /* Removing all borders for a unified look */
}

.accordion-body {
    font-size: 1rem; /* Standard font size for answers */
    color: #666; /* Soft gray for readability */
    line-height: 1.5; /* Line spacing for comfort */
    padding: 0.8rem 1.5rem 1.2rem; /* Inner padding for a neat layout */
    background-color: #F9F9F9; /* Slightly off-white background for distinction without harshness */
}

/* Enhance transitions for a smoother user experience */
.accordion-button, .accordion-body {
    transition: all 0.3s ease;
}