/* FAQ Hero Section */
.faq-hero {
    background-color: #476DB0; /* Adjust to match your design */
    color: white;
    text-align: center;
    padding: 40px 0; /* Increase padding for better emphasis */
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
}

/* Accordion Styling */
.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-bottom: 1px solid #28a745; /* Green separator line */
}

.accordion-header {
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.accordion-button {
    font-weight: bold;
    color: #333;
    background-color: #fff;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
}

.accordion-button:hover {
    background-color: #f1f1f1; /* Light gray hover effect */
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #28a745; /* Match your theme color */
}

.accordion-button:not(.collapsed) {
    background-color: #e9f7ef; /* Active button background */
    color: #28a745; /* Active button text color */
}

.accordion-button::after {
    transform: rotate(-90deg); /* Rotate the arrow icon */
    transition: transform 0.3s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(0); /* Reset arrow icon rotation when expanded */
}

.accordion-body {
    border-top: 1px solid #ccc;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Links */
.here-link {
    color: #28a745;
    text-decoration: underline;
    cursor: pointer;
}

.here-link:hover {
    text-decoration: none; /* Remove underline on hover for cleaner UI */
}
