.hero-banner {
	position: relative;
	width: 100%;
	min-height: 500px;
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	padding: 100px 0 80px;
	background-color: #f7f2ec;
}
.hero-banner .page-wrapper {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.hero-banner h3 {
	font-size: 20px;
	margin: 0;
	font-weight: 600;
	text-transform: uppercase;
	color: #d85575;
}
.hero-banner .hero-title {
	font-size: 70px;
	font-family: "Playfair Display", serif;
	margin: 0;
	max-width: 600px;
	line-height: 110%;
}
.hero-banner p {
	margin: 0;
	max-width: 500px;
	font-size: 20px;
	line-height: 30px;
	color: #191919;
	font-weight: 400;
}
.faq-container .faq-item {
	border: 1px solid #eee;
	margin-bottom: 16px;
	border-radius: 4px;
	cursor: pointer;
}
.faq-question {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: space-between;
	padding: 20px;
}
.faq-question .faq-icon {
	font-size: 22px;
	border: 1px solid #eee;
	min-width: 30px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
}
.faq-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 0;
}
.faq-question h3 {
	font-size: 22px;
	font-family: "Playfair Display", serif;
	margin: 0;
	line-height: 110%;
	font-weight: 500;
}
.faq-answer {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
	margin-top: 10px;
	display: none;
	padding: 0 20px 20px;
}
.faq-container .faq-item.active {
	background-color: #fdf5ef;
}
.faq-container .faq-item.active .faq-answer {
	display: block;
}
.faq-container .faq-item.active h3 {
	color: #d85575;
}
.faq-container .faq-item:last-child {
	margin-bottom: 0;
}
@media(max-width: 1200px) {
	.hero-banner {
		background-position: left;
	}
	.hero-banner h3 {
		font-size: 18px;
	}
	.hero-banner .hero-title {
		font-size: 54px;
		max-width: 400px;
	}
}
@media(max-width: 991px) {
	.hero-banner {
		min-height: 380px;
		padding: 60px 0 30px;
	}
	.hero-banner h3 {
		font-size: 14px;
	}
	.hero-banner .hero-title {
		font-size: 50px;
	}
	.hero-banner p {
		max-width: 337px;
		font-size: 16px;
		line-height: 26px;
	}
	.faq-content {
		padding: 40px 0;
	}
	.faq-question h3 {
		font-size: 20px;
	}
	.faq-answer {
		font-size: 14px;
		line-height: 20px;
	}
	.faq-question {
		padding: 16px;
	}
	.faq-question .faq-icon {
		font-size: 16px;
		border: 1px solid #eee;
		min-width: 24px;
		width: 24px;
		height: 24px;
	}
	.faq-answer {
		padding: 0 16px 16px;
		margin: 0;
	}
	.faq-container .faq-item {
		margin-bottom: 10px;
	}
}
@media(max-width: 767px) {
	.hero-banner .hero-title {
		font-size: 40px;
	}
	.faq-question h3 {
		font-size: 18px;
	}
}