.faq {
	padding: 30px 0;
}

.faq__box {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.faq__header {
	background: linear-gradient(175deg, #2874bb, #3dabe4);
	color: white;
	padding: 2rem;
	text-align: center;
}

.faq__title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.faq__subtitle {
	font-size: 1.1rem;
	opacity: 0.9;
}

/* FAQ List Block */
.faq-list {
	padding: 2rem;
}

.faq-list__item {
	border-bottom: 1px solid #e2e8f0;
	margin-bottom: 1rem;
}

.faq-list__item.is-open .faq-list__icon::after {
	opacity: 0;
}

.faq-list__item:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.faq-list__question {
	background: none;
	border: none;
	width: 100%;
	text-align: left;
	padding: 1.5rem 0;
	font-size: 1.6rem;
	font-weight: 600;
	color: #2d3748;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: color 0.3s ease;
}

.faq-list__question:hover {
	color: #667eea;
}



.faq-list__icon {
	width: 24px;
	height: 24px;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	margin-left: 1rem;
}


.faq-list__answer {
	padding: 0 0 1.5rem 0;
	color: #4a5568;
	line-height: 1.7;
	display: none;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
}


.faq-list__answer p {
	margin-bottom: 1rem;
}

.faq-list__answer p:last-child {
	margin-bottom: 0;
}

/* Plus/Minus Icon */
.faq-list__icon::before,
.faq-list__icon::after {
	content: '';
	position: absolute;
	background: currentColor;
	border-radius: 2px;
}

.faq-list__icon {
	position: relative;
}

.faq-list__icon::before {
	width: 20px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.faq-list__icon::after {
	width: 2px;
	height: 20px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: opacity 0.3s ease;
}
