.dr1031faq {
	background: linear-gradient(to bottom, #fffaf0, #fff6e8);
	background-image:
		url('https://www.transparenttextures.com/patterns/arches.png');
	padding: 100px 20px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	color: #5a381e;
}

.faq-section h2 {
	text-align: center;
	font-size: 2.5rem;
	color: #A67C00;
	font-weight: 800;
	text-shadow: 0 1px 1px rgba(165, 114, 0, 0.3);
}

.faq-section h2::after {
	content: '';
	display: block;
	width: 90px;
	height: 5px;
	background: #D4AF37;
	margin: 14px auto 0;
	border-radius: 8px;
}

.telugu-subtitle {
	font-size: 1.2rem;
	color: #8B5E3C;
	font-weight: 500;
	margin-top: 6px;
	display: block;
}

.faq-list {
	max-width: 900px;
	margin: 40px auto 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.faq-box {
	background: #fffdf7;
	border-left: 6px solid #D4AF37;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(212, 175, 55, 0.18);
	transition: all 0.4s ease;
	overflow: hidden;
}

.faq-title {
	background: #fff6dc;
	padding: 24px 30px;
	font-size: 1.2rem;
	font-weight: 600;
	color: #7A4B00;
	cursor: pointer;
	position: relative;
	line-height: 1.6;
}

.faq-title::after {
	content: '+';
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.6rem;
	color: #D4AF37;
	transition: transform 0.3s ease;
}

.faq-box.active .faq-title::after {
	content: '−';
	transform: translateY(-50%) rotate(180deg);
	color: #A67C00;
}

.faq-sub {
	display: block;
	font-size: 1rem;
	color: #A56A00;
	margin-top: 6px;
	font-style: italic;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	background: #fff9ec;
	font-size: 1.05rem;
	line-height: 1.7;
	color: #4e3a2d;
	padding: 0 30px;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-box.active .faq-content {
	max-height: 500px;
	padding: 18px 30px 26px;
}

.faq-content .telugu {
	margin-top: 8px;
	color: #5D4037;
	font-family: 'Noto Sans Telugu', sans-serif;
	font-size: 1.05rem;
}

.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);
}

@media ( max-width : 768px) {
	.faq-section h2 {
		font-size: 2.2rem;
	}
	.faq-title {
		font-size: 1.05rem;
	}
	.faq-sub, .telugu-subtitle, .faq-content {
		font-size: 1rem;
	}
}