.dr1028faq {
	background: linear-gradient(to bottom, #f0fff4, #ffffff);
	padding: 80px 20px;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
	color: #2C3E50;
	box-sizing: border-box;
}

.dr1028faq .faq-section h2 {
	text-align: center;
	font-size: 2.4rem;
	margin-bottom: 10px;
	color: #2E3A59;
	font-weight: 700;
	line-height: 1.3;
}

.dr1028faq .faq-section h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: #6FCF97;
	margin: 12px auto 0;
	border-radius: 4px;
}

.dr1028faq .telugu-subtitle {
	font-size: 1.1rem;
	color: #FF7043;
	display: block;
	margin-top: 6px;
	font-weight: 500;
}

.faq-list {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-box {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
	border-left: 6px solid #6FCF97;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-title {
	padding: 20px 24px;
	font-weight: 600;
	font-size: 1.15rem;
	color: #2E3A59;
	cursor: pointer;
	background: #e9f8ef;
	line-height: 1.5;
	position: relative;
}

.faq-title::after {
	content: '+';
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.6rem;
	color: #57b681;
	transition: transform 0.3s ease;
}

.faq-box.active .faq-title::after {
	content: '−';
	color: #FF7043;
	transform: translateY(-50%) rotate(180deg);
}

.faq-sub {
	display: block;
	font-size: 0.95rem;
	color: #FF7043;
	font-style: italic;
	margin-top: 4px;
}

.faq-content {
	padding: 0 24px;
	max-height: 0;
	overflow: hidden;
	background: #f6fff9;
	color: #2C3E50;
	font-size: 1rem;
	line-height: 1.7;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-box.active .faq-content {
	padding: 16px 24px 24px;
	max-height: 600px;
}

.faq-content .telugu {
	margin-top: 8px;
	color: #2C3E50;
	font-size: 1rem;
	font-family: 'Noto Sans Telugu', sans-serif;
}

/* Fade-in Animation */
.fade-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive */
@media ( max-width : 768px) {
	.dr1028faq .faq-section h2 {
		font-size: 2rem;
	}
	.telugu-subtitle {
		font-size: 1rem;
	}
	.faq-title {
		font-size: 1.05rem;
	}
	.faq-content, .faq-content .telugu {
		font-size: 0.95rem;
	}
}