.faq-section {
	background-color: #000000;
	color: #FFFFFF;
	padding: 5rem 1rem;
	font-family: 'Roboto', sans-serif;
}
.faq-section .container {
	max-width: 800px;
	margin: 0 auto;
}
.faq-section .section-title {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 3rem;
	letter-spacing: 1px;
}
.faq-container {
	border-top: 1px solid #333;
}
.faq-item {
	border-bottom: 1px solid #333;
	padding: 1.5rem 0;
}
.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	user-select: none;
}
.faq-question h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0;
}
.faq-icon {
	font-size: 2rem;
	font-weight: 300;
	transition: transform 0.3s ease;
}
.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.faq-answer p {
	margin: 0;
	padding-top: 1.5rem;
	line-height: 1.7;
	color: #b0b0b0;
}
.faq-item.active .faq-answer {
	max-height: 200px;
}
.faq-item.active .faq-icon {
	transform: rotate(45deg);
}