.dr1017faq {
	padding: 60px 20px;
	background: linear-gradient(to right, #fff8f1, #fff3e0);
	font-family: 'Segoe UI', 'Noto Sans Telugu', sans-serif;
}

.faq-section {
	max-width: 900px;
	margin: auto;
}

.faq-title {
	text-align: center;
	font-size: 2.4rem;
	color: #d84315;
	font-weight: 800;
	margin-bottom: 10px;
	background: linear-gradient(90deg, #ff5722, #ff9800);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.faq-subtitle {
	text-align: center;
	font-size: 18px;
	color: #6d4c41;
	margin-bottom: 40px;
}

.faq-item {
	border: 1px solid #ffccbc;
	border-radius: 12px;
	margin-bottom: 20px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(255, 87, 34, 0.1);
	transition: box-shadow 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 6px 16px rgba(255, 87, 34, 0.15);
}

.faq-question {
	width: 100%;
	padding: 18px 20px;
	font-size: 18px;
	background: none;
	border: none;
	outline: none;
	cursor: pointer;
	text-align: left;
	color: #e64a19;
	font-weight: 600;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-icon {
	font-size: 22px;
	transition: transform 0.3s ease;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	padding: 0 20px;
	background: #fff3e0;
	font-size: 16px;
	color: #5d4037;
	line-height: 1.6;
}

.faq-answer p {
	padding: 16px 0;
	margin: 0;
}

/* Active toggle */
.faq-item.active .faq-answer {
	max-height: 300px;
	padding: 10px 20px 20px;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

/* Responsive */
@media ( max-width : 480px) {
	.faq-title {
		font-size: 2rem;
	}
	.faq-question {
		font-size: 16px;
	}
	.faq-subtitle {
		font-size: 16px;
	}
}