.faqs-hero {
	font-family: "Outfit", Arial, sans-serif;
	text-align: center;
	padding: 60px 20px;
	background: #eef4fa;
	border-bottom: 1px solid #d6e2ee;
	min-height: 340px;
}

.faqs-hero h1 {
	font-size: 48px;
	font-weight: 600;
	margin-bottom: 24px;
	color: #1E293B;
	line-height: 1.2;
}

.faqs-hero p {
	max-width: 665px;
	margin: 0 auto 30px;
	font-size: 20px;
	color: #4b5563;
	line-height: 1.6;
}

.faqs-wrapper {
	font-family: "Outfit", Arial, sans-serif;
	background: #F8FAFC;
	padding: 50px 0 98px;
}

.faqs-container {
	display: flex;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
	gap: 40px;
	align-items: flex-start;
}

.sidebar {
	flex: 1;
	min-width: 250px;
}

.sidebar ul {
	list-style: none;
	padding: 0;
	margin-bottom: 20px;
}

.sidebar li {
	font-weight: 600;
	padding: 16px;
	font-size: 24px;
	cursor: pointer;
	color: #1a1a1a;
	border-radius: 8px;
	line-height: 1.2;
	margin-bottom: 15px;
	border: 1px solid transparent;
	transition: 0.2s ease;
}

.sidebar li.active {
	color: #ff7b22;
	background: #fff6ef;
	border: 1px solid #FFEBD9;
}

.contact-btn {
	display: inline-block;
	padding: 13px 50px;
	background: #000;
	color: #fff;
	border-radius: 40px;
	text-decoration: none;
	font-size: 16px;
	margin-top: 20px;
	font-family: 'Inter';
}

.faq-section {
	width: 100%;
	max-width: 776px;
	background: #fff;
	border-radius: 10px;
	padding: 20px 40px;
}

.faq-item {
	border-bottom: 1px solid #e7edf3;
	padding: 18px 0;
	cursor: pointer;
}

.faq-question {
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-answer {
	display: none;
	margin-top: 12px;
	color: #4b5563;
	font-size: 16px;
	line-height: 1.6;
}

.faq-item.active .faq-answer p {
    padding-bottom: 10px;
}
.faq-item.active .faq-answer a {
    color: #D1441B;
}

.faq-item.active .faq-answer ul {
    list-style: disc;
    margin: 0 30px 0;
}

.faq-item:last-child {
	border: none;
}

.faq-item.active .faq-answer {
	display: block;
}

.icon {
	display: flex;
	align-items: center;
	transition: transform 0.3s ease;
}

.faq-item.active .icon {
	transform: rotate(180deg);
}

/* =======================================
	RESPONSIVE BREAKPOINTS
======================================= */

/* ---------- TABLETS (1024px) ---------- */
@media (max-width: 1024px) {
	.faqs-container {
		gap: 30px;
	}

	.sidebar li {
		font-size: 20px;
		padding: 14px;
	}
}

/* ---------- MOBILE / TABLET (768px) ---------- */
@media (max-width: 768px) {

	.faqs-hero {
		padding: 40px 16px;
		min-height: auto;
	}

	.faqs-hero h1 {
		font-size: 36px;
	}

	.faqs-hero p {
		font-size: 18px;
		padding: 0 10px;
	}

	.faqs-container {
		flex-direction: column;
		gap: 30px;
	}

	.sidebar {
		width: 100%;
	}

	.sidebar ul {
		display: block;
	}

	.sidebar li {
		font-size: 20px;
		padding: 14px;
	}

	.faq-section {
		width: 100%;
		padding: 20px;
	}
	.faqs-wrapper{
		padding: 50px 0 70px;
	}
}

/* ---------- SMALL MOBILE (480px) ---------- */
@media (max-width: 480px) {

	.faqs-hero h1 {
		font-size: 30px;
	}

	.faqs-hero p {
		font-size: 16px;
	}

	.sidebar li {
		font-size: 18px;
		padding: 12px;
	}

	.faq-question {
		font-size: 16px;
	}

	.faq-answer {
		font-size: 14px;
	}

	.contact-btn {
		width: 100%;
		text-align: center;
		padding: 14px 20px;
		font-size: 14px;
	}
}