.dr1041faq {
	background: linear-gradient(135deg, #f0fff4, #fffde7, #e8f5e9);
	padding: 80px 20px;
	font-family: 'Noto Sans Telugu', 'Poppins', sans-serif;
	color: #1b3c59;
	border-radius: 20px;
}

.faq-section h2 {
	text-align: center;
	font-size: 2.4rem;
	font-weight: 800;
	color: #2e7d32;
	margin-bottom: 40px;
}

.faq-list {
	max-width: 900px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-box {
	background: white;
	border-left: 6px solid #25D366;
	border-radius: 16px;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.4s ease;
}

.faq-title {
	padding: 18px 26px;
	font-weight: 700;
	font-size: 1.15rem;
	cursor: pointer;
	position: relative;
	color: #1b5e20;
}

.faq-title::after {
	content: "+";
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: #25D366;
	transition: transform 0.3s ease;
}

.faq-box.active .faq-title::after {
	content: "−";
	color: #1b5e20;
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	padding: 0 26px;
	font-size: 1rem;
	line-height: 1.6;
	transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-box.active .faq-content {
	max-height: 300px;
	padding: 15px 26px 20px;
}

.faq-actions {
	margin-top: 10px;
	display: flex;
	gap: 10px;
	justify-content: flex-start;
}

.whatsapp-btn, .call-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.whatsapp-btn {
	background-color: #25D366;
	color: #fff;
}

.whatsapp-btn:hover {
	background-color: #1da851;
}

.call-btn {
	background-color: #facc15;
	color: #1e293b;
}

.call-btn:hover {
	background-color: #fde047;
}

/* Fade 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) {
	.faq-section h2 {
		font-size: 2rem;
	}
	.faq-title {
		font-size: 1rem;
	}
	.faq-actions {
		flex-direction: column;
		align-items: flex-start;
	}
}