.dr1016faq {
	background: #f1fdfb;
	padding: 60px 20px;
	font-family: 'Segoe UI', sans-serif;
	color: #004d40;
}

.dr1016faq .faq-section {
	max-width: 900px;
	margin: auto;
}

.dr1016faq h2 {
	font-size: 2.5rem;
	text-align: center;
	color: #00695c;
	margin-bottom: 40px;
	position: relative;
}

.dr1016faq h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #00bfa5;
	margin: 10px auto 0;
	border-radius: 2px;
}

/* FAQ Item */
.faq-item {
	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 4px 15px rgba(0, 150, 136, 0.1);
	margin-bottom: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
}

/* Question Button */
.faq-question {
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	padding: 20px;
	font-size: 1.1rem;
	font-weight: 600;
	color: #00796b;
	cursor: pointer;
	position: relative;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 20px;
	font-size: 1.5rem;
	color: #009688;
	transition: transform 0.3s ease;
}

/* Rotate arrow when active */
.faq-item.active .faq-question::after {
	transform: rotate(45deg);
}

/* Answer Content */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	color: #555;
	background: #f9f9f9;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 15px 20px 25px;
}