.faq-container {
	margin: 80px 24px;
}

.faq-header {
	padding: 40px 0;
}

.faq-header h3 {
	font-size: 24px;
	font-weight: 800;
	text-align: right;
	margin: 0;
}

.faq-cards-container {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.faq-card {
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e1e1e1;
	transition: all 0.3s ease;
	padding: 12px 16px;
    background-color: #fff;
	font-family: IRANSANS, sans-serif;
}

.faq-card:hover {
	border-color: #e1e1e1af;
}

.faq-collapse-toggle {
	width: 100%;
	color: #000;
	border: none;
	font-size: 14px;
	font-weight: 600;
	text-align: right;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: transparent;
	display: flex;
	justify-content: space-between;
	align-items: center;
    padding: 0;
	font-family: IRANSANS, sans-serif;
}

.faq-collapse-toggle:hover {
	opacity: 0.7;
}

.faq-collapse-toggle {
	transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-collapse-toggle .faq-icon.faq-expanded {
	transform: rotate(180deg);
}

.faq-collapsible-content {
	padding: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-collapsible-content.faq-expanded {
	max-height: 500px;
	padding-top: 12px;
}

.faq-text-content {
	font-size: 14px;
	color: #404040;
	text-align: right;
}

@media screen and (min-width: 768px) {
	.faq-container {
		margin: 60px 80px;
	}
	.faq-header h3 {
		font-size: 28px;
	}

}

@media screen and (min-width: 1360px) {
	.faq-header h3 {
		font-size: 32px;
	}
}
