.panel-faqs { background: #fff; }
.panel-faqs .container { max-width: 1230px; }

.panel-faqs-header {
	text-align: center;
	margin-bottom: 36px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
}

.panel-faqs-heading {
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: 42px;
	font-weight: 600;
	line-height: 54px;
	letter-spacing: 1px;
	color: #252c32;
	margin: 0;
}

.panel-faqs-intro-text {
	max-width: 918px;
	margin: 0 auto;
}

.panel-faqs-intro-text p {
	font-family: "neue-haas-grotesk-display", sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 32px;
	letter-spacing: 1px;
	color: #6b7280;
	margin: 0;
}
.faqs-container { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 40px; }
.faq-item { position: relative; }
.faq-divider { height: 1px; background: #e5e7eb; margin-bottom: 24px; }
.faq-content { margin-bottom: 26px; }
.faq-item:last-child .faq-content { margin-bottom: 0; }
.faq-header { display: flex; align-items: flex-start; gap: 24px; cursor: pointer; position: relative; }
.faq-question-wrapper { flex: 1; min-width: 0; }
.faq-question { font-size: 22px; font-weight: 600; line-height: 30px; letter-spacing: 0.44px; color: #252c32; margin: 0; padding: 0; font-family: "neue-haas-grotesk-display", sans-serif; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; opacity: 0; }
.faq-answer.show { max-height: 500px; opacity: 1; transition: max-height 0.3s ease-in, opacity 0.3s ease-in; }
.faq-answer p { font-size: 16px; font-weight: 400; line-height: 26px; letter-spacing: 0.57px; color: #6b7280; margin-top: 8px; margin-bottom: 6px; max-width: 1016px; }
.faq-toggle-icon { flex-shrink: 0; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; }
.toggle-circle { width: 26px; height: 26px; border: 1.26px solid #e5e7eb; border-radius: 50%; background: #ffffff; display: flex; align-items: center; justify-content: center; position: relative; transition: all 0.3s ease; }
.toggle-circle:hover { border-color: #252c32; }
.icon-minus { display: none; }
.faq-item.active .icon-plus { display: none; }
.faq-item.active .icon-minus { display: block; }

/* Responsive adjustments */
@media (max-width: 991px) {
	.panel-faqs-header {
		margin-bottom: 30px;
		gap: 14px;
	}
	
	.panel-faqs-heading {
		font-size: 36px;
		line-height: 46px;
	}
	
	.panel-faqs-intro-text p {
		font-size: 20px;
		line-height: 30px;
	}
	
	.faqs-container {
		padding: 30px;
	}
	
	.faq-question {
		font-size: 20px;
		line-height: 28px;
	}
	
	.faq-answer p {
		font-size: 16px;
		line-height: 24px;
	}
}

@media (max-width: 767px) {
	.panel-faqs-header {
		margin-bottom: 24px;
		gap: 12px;
	}
	
	.panel-faqs-heading {
		font-size: 32px;
		line-height: 40px;
	}
	
	.panel-faqs-intro-text p {
		font-size: 18px;
		line-height: 28px;
	}
	
	.faqs-container {
		padding: 24px;
	}
	
	.faq-header {
		gap: 16px;
	}
	
	.faq-question {
		font-size: 18px;
		line-height: 26px;
	}
	
	.faq-answer p {
		font-size: 15px;
		line-height: 22px;
	}
	
	.faq-toggle-icon {
		width: 30px;
		height: 30px;
	}
	
	.toggle-circle {
		width: 22px;
		height: 22px;
	}
	
	.icon-plus,
	.icon-minus {
		width: 14px;
		height: 14px;
	}
}

