.faq-section {
	background-color: var(--colors-cream);
	padding: 5rem 5rem 0;
}

.faq-box {
	background-color: #ff961c;
	padding: 5rem 15rem;
}

.faq-box h2 {
	color: #000000;
	text-align: center;
	margin-bottom: 4rem;
	font-size: 2.5rem;
}

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background-color: #fed19e;
	border-radius: 26px;
}

.faq-item summary {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;

	padding: 24px 32px;

	font-family: Montserrat, sans-serif;
	font-size: 1.2rem;
	font-weight: 500;
}

.faq-item summary::after {
	content: '';
	flex: 0 0 10px;
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.4s ease;
}

.faq-item[open] summary::after {
	transform: rotate(-135deg) translateY(-2px);
}

.faq-answer {
	padding: 0 32px 28px;
	font-family: Montserrat, sans-serif;
	font-weight: 400;
}

@media (max-width: 1024px) {
	.faq-box {
		padding: 3rem 6rem;
	}
}

@media (max-width: 767px) {
	.faq-section {
		padding: 3rem 0 0;
	}

	.faq-box {
		padding: 3rem 1.5rem;
	}

	.faq-box h2 {
		font-size: 1.875rem;
		line-height: 1.05;
		margin-bottom: 2rem;
	}
}
