.dr1021faq {
	background: linear-gradient(to bottom, #e0f2f1, #ffffff);
	/* soft teal to white */
	padding: 80px 20px;
	font-family: 'Segoe UI', 'Noto Sans Telugu', sans-serif;
	color: #004d40; /* dark teal for trust */
	box-sizing: border-box;
}

/* FAQ Heading */
.dr1021faq .faq-section h2 {
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 10px;
	color: #00695c; /* healthcare green */
	position: relative;
	font-weight: 700;
	line-height: 1.3;
}

.dr1021faq .faq-section h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #26a69a; /* accent */
	margin: 12px auto 0;
	border-radius: 4px;
}

/* Telugu Subtitle */
.dr1021faq .telugu-subtitle {
	font-size: 1.1rem;
	color: #00796b;
	display: block;
	margin-top: 6px;
	font-family: 'Noto Sans Telugu', sans-serif;
}

/* FAQ Container */
.dr1021faq .faq-list {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Each FAQ Box */
.dr1021faq .faq-box {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 105, 92, 0.1);
	border: 1px solid #b2dfdb;
	overflow: hidden;
	transition: all 0.3s ease;
}

/* Question Title */
.dr1021faq .faq-title {
	padding: 18px 24px;
	font-weight: 600;
	font-size: 1.1rem;
	color: #00695c;
	cursor: pointer;
	background: #e0f7fa;
	line-height: 1.4;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* Plus / Minus Icon */
.dr1021faq .faq-title::after {
	content: '+';
	font-size: 1.6rem;
	color: #00897b;
	transition: transform 0.3s ease;
	line-height: 1;
	display: inline-block;
	width: 24px;
	text-align: center;
}

.dr1021faq .faq-box.active .faq-title::after {
	content: '−';
}

/* Telugu sub under question */
.dr1021faq .faq-sub {
	display: block;
	font-size: 0.95rem;
	color: #00796b;
	font-style: italic;
	margin-top: 4px;
	font-family: 'Noto Sans Telugu', sans-serif;
}

/* Answer Content */
.dr1021faq .faq-content {
	padding: 0 24px;
	max-height: 0;
	overflow: hidden;
	background: #f1fdfc;
	color: #004d40;
	font-size: 0.95rem;
	line-height: 1.6;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.dr1021faq .faq-box.active .faq-content {
	padding: 16px 24px;
	max-height: 500px;
}

/* Telugu Answer Text */
.dr1021faq .faq-content .telugu {
	margin-top: 6px;
	color: #33691e;
	font-size: 0.95rem;
	font-family: 'Noto Sans Telugu', sans-serif;
	line-height: 1.6;
}

/* Responsive Design */
@media ( max-width : 768px) {
	.dr1021faq .faq-section h2 {
		font-size: 2rem;
	}
	.dr1021faq .telugu-subtitle {
		font-size: 1rem;
	}
	.dr1021faq .faq-title {
		font-size: 1rem;
	}
	.dr1021faq .faq-sub {
		font-size: 0.9rem;
	}
}

@media ( max-width : 480px) {
	.dr1021faq {
		padding: 50px 15px;
	}
	.dr1021faq .faq-title::after {
		right: 16px;
	}
}