/* FAQ accordion styling */

.faq-section-title
{
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 0.85;
}

.faq-accordion
{
	margin-top: 24px;
}

.faq-item
{
	border-radius: 18px;
	background: rgba(8, 10, 24, 0.9);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
	padding: 1.1rem 1.25rem;
	margin-bottom: 14px;
}

.faq-question
{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	border: none;
	background: transparent;
	color: #f5f5ff;
	font-size: 1rem;
	font-weight: 600;
	text-align: left;
	padding: 0;
	cursor: pointer;
}

.faq-question-text
{
	flex: 1;
}

.faq-icon
{
	font-size: 1.1rem;
	opacity: 0.8;
	transition: transform 0.18s ease, opacity 0.18s ease;
}

.faq-item.open .faq-icon
{
	transform: rotate(90deg);
	opacity: 1;
}

.faq-answer
{
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.22s ease;
	font-size: 0.95rem;
	line-height: 1.55;
	color: #d0d2f5;
	margin-top: 0;
}

.faq-answer-inner
{
	padding-top: 0.65rem;
}

.faq-item.open .faq-answer
{
	max-height: 600px; /* more than enough for long answers */
}

.faq-answer p
{
	margin: 0 0 0.6rem 0;
}

.faq-answer ul
{
	margin: 0.2rem 0 0.6rem 1.1rem;
	padding: 0;
}

.faq-answer li
{
	margin-bottom: 0.15rem;
}
