@import '../components/header/header.css';
@import '../components/container/base.css';
@import '../components/footer/footer.css';
@import '../components/modal/modal.css';

body {
	background-color: #ffffff;
	margin: 0;
	padding: 0;
}

.page_content {
	padding-top: 71px;
	background-color: #ffffff;
	width: 100%;
	position: relative;
	z-index: 5;
}

.container_fix {
	max-width: 800px;
	margin: 0 auto;
	padding: 80px 40px 120px 40px;
}

.faq_intro {
	margin-bottom: 60px;
	padding-left: 10px;
}

.faq_main_title {
	font-size: 22px;
	font-weight: 700;
	color: #e87a79;
	display: flex;
	align-items: center;
	text-transform: uppercase;
}

.red_dot {
	font-size: 28px;
	color: #e87a79;
	margin-right: 14px;
	line-height: 0;
	display: inline-block;
	transform: translateY(-2px);
}

.faq_accordion_wrap {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 70px;
}

.faq_item {
	border-top: 1px solid #dbdbdb;
	width: 100%;
}

.faq_item:last-child {
	border-bottom: 1px solid #dbdbdb;
}

.faq_question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 10px;
	cursor: pointer;
	user-select: none;
	transition: background-color 0.2s ease;
}

.faq_question span {
	font-size: 18px;
	font-weight: 600;
	color: #000000;
	line-height: 1.4;
}

.faq_icon {
	position: relative;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	margin-left: 20px;
	transition: transform 0.3s ease;
}

.faq_icon::before,
.faq_icon::after {
	content: '';
	position: absolute;
	background-color: #555;
	transition: all 0.3s ease;
}

.faq_icon::before {
	top: 11px;
	left: 4px;
	width: 16px;
	height: 2px;
}

.faq_icon::after {
	top: 4px;
	left: 11px;
	width: 2px;
	height: 16px;
}

.faq_answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq_answer_inner {
	padding: 0 10px 35px 10px;
}

.faq_answer_inner p {
	font-size: 14px;
	line-height: 1.7;
	color: #4a4a4a;
	margin-bottom: 15px;
}

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

.faq_sublist {
	list-style-type: disc;
	padding-left: 20px;
	margin-bottom: 15px;
}

.faq_sublist li {
	font-size: 14px;
	line-height: 1.6;
	color: #4a4a4a;
	margin-bottom: 5px;
}

.faq_item.active .faq_answer {
	max-height: 500px;
}

.faq_item.active .faq_icon {
	background-color: #0066ff;
	border-radius: 50%;
	transform: rotate(45deg);
}

.faq_item.active .faq_icon::before,
.faq_item.active .faq_icon::after {
	background-color: #ffffff;
}

.faq_item.active .faq_icon::before {
	left: 5px;
	width: 14px;
}
.faq_item.active .faq_icon::after {
	top: 5px;
	height: 14px;
}

.faq_cta {
	text-align: center;
	margin-top: 60px;
}

.cta_btn {
	display: inline-block;
	background: #e87a79;
	color: #ffffff;
	text-decoration: none;
	padding: 18px 60px;
	border-radius: 35px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	transition:
		transform 0.3s ease,
		background-color 0.3s ease;
}

.cta_btn:hover {
	background: #d45251;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.container_fix {
		padding: 50px 20px 80px 20px;
	}

	.faq_intro {
		margin-bottom: 40px;
	}

	.faq_question {
		padding: 22px 4px;
	}

	.faq_question span {
		font-size: 16px;
	}

	.faq_answer_inner {
		padding: 0 4px 28px 4px;
	}

	.cta_btn {
		padding: 16px 40px;
		font-size: 13px;
	}
}
