.dr1048faq {
	background: linear-gradient(to bottom, #1c1c1c, #121212);
	padding: 100px 20px;
	font-family: 'Poppins', 'Noto Sans Telugu', sans-serif;
	color: #f7e9b9;
}

.faq-section h2 {
	text-align: center;
	font-size: 2.6rem;
	color: #ffd700;
	font-weight: 800;
	text-shadow: 0 2px 6px rgba(255, 215, 0, 0.2);
}

.faq-section h2::after {
	content: '';
	display: block;
	width: 90px;
	height: 5px;
	background: #ffcc00;
	margin: 16px auto 0;
	border-radius: 10px;
}

.telugu-subtitle {
	font-size: 1.25rem;
	color: #e0c76b;
	font-weight: 500;
	margin-top: 6px;
	display: block;
}

.faq-list {
	max-width: 900px;
	margin: 50px auto 0;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.faq-box {
	background: rgba(255, 255, 255, 0.05);
	border-left: 6px solid #ffd700;
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(255, 215, 0, 0.15);
	transition: all 0.4s ease;
	overflow: hidden;
	backdrop-filter: blur(4px);
}

.faq-title {
	background: rgba(255, 255, 255, 0.03);
	padding: 24px 30px;
	font-size: 1.2rem;
	font-weight: 600;
	color: #ffea9e;
	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: #ffcc00;
	transition: transform 0.3s ease;
}

.faq-box.active .faq-title::after {
	content: '−';
	transform: translateY(-50%) rotate(180deg);
	color: #ffd700;
}

.faq-sub {
	display: block;
	font-size: 1rem;
	color: #e0bb5d;
	margin-top: 6px;
	font-style: italic;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.02);
	font-size: 1.05rem;
	line-height: 1.7;
	color: #f9f5e3;
	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: #fff3c0;
	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;
	}
}