/*
 * FAQ Page Sections styles.
 */

.faq-page-sections {
    max-width: 1280px;
    margin: 20px auto;
}
.faq-page-section {
    margin-bottom: 50px;
}
.faq-page-section::after {
    content: "";
    display: block;
    width: 100%;
    height: 7px;
    background-color: #B8E0F8;
    margin-top: 20px;
}
.faq-page-sections .faq-page-section .faq-section-heading {
    font-family: "Geogrotesque", Sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #27548C;
}
.faq-page-sections .faq-section-heading {
	font-family: "Geogrotesque", Sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #27548C;
}
.faq-items-wrapper .faq-item .faq-question {
    color: #27548C;
    font-size: 18px;
    font-weight: 700;
    font-family: "Geogrotesque";
}
.faq-items-wrapper .faq-item .faq-answer{
    font-weight: 400;
    font-size: 16px;
    font-family: "Open Sans";
    color: #3B3B3B;
    padding-bottom: 20px;
}

@media screen and (max-width: 767px) {
    .faq-page-sections {
        padding: 0px 20px;
    }
}

/* accordion */
/* FAQ accordion — append to faq-page.css (replaces earlier accordion additions) */
.faq-question {
	margin: 0;
}

.faq-question-toggle {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.6rem;
	width: 100%;
	padding: 1rem 0;
	background: none;
	border: none;
	font: inherit;
	font-weight: 700;
	color: inherit;
	text-align: left;
	cursor: pointer;
}

.faq-question-toggle:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

/* Solid triangle, left of the question text. Points right (toward the
   question) when closed, rotates to point up when expanded. */
.faq-toggle-icon {
	flex: 0 0 auto;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 8px solid currentColor;
	transition: transform 0.2s ease;
}

.faq-question-toggle[aria-expanded="true"] .faq-toggle-icon {
	transform: rotate(-90deg);
}

.faq-answer {
	padding: 1rem 0;
}

.faq-answer[hidden] {
	display: none;
}

.faq-items-wrapper .faq-question .faq-question-toggle,
.faq-items-wrapper .faq-question .faq-question-toggle:hover,
.faq-items-wrapper .faq-question .faq-question-toggle.active {
    background: none !important;
    color: inherit !important;
}

/* .faq-items-wrapper .faq-item {
	border-bottom: 1px solid #d5d8dc;
} */

.faq-question-text {
	flex: 1 1 auto;
	min-width: 0;
	white-space: normal;
	word-wrap: break-word;
}