.dr1015faq {
	
}

.dr1015faq .faq-section {
	background-color: #fff8e0;
	padding: 4rem 1rem;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	color: #5a4a1a;
}

.dr1015faq .faq-section .container {
	max-width: 900px;
	margin: 0 auto;
}

.dr1015faq .faq-title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	color: #bfa046;
	margin-bottom: 0.5rem;
}

.dr1015faq .faq-subtitle {
	text-align: center;
	font-size: 1.15rem;
	margin-bottom: 2.5rem;
	color: #7c6a28;
}

.dr1015faq .faq-items {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.dr1015faq .faq-item {
	background-color: #fff;
	border-radius: 1rem;
	box-shadow: 0 6px 18px rgba(191, 160, 70, 0.15);
	overflow: hidden;
}

.dr1015faq .faq-question {
	width: 100%;
	text-align: left;
	background: #fff;
	padding: 1.2rem 1.5rem;
	border: none;
	font-size: 1.1rem;
	font-weight: 600;
	color: #6f5a00;
	cursor: pointer;
	position: relative;
}

.dr1015faq .faq-question::after {
	content: '+';
	position: absolute;
	right: 1.5rem;
	font-size: 1.5rem;
	color: #bfa046;
	transition: transform 0.3s ease;
}

.dr1015faq .faq-item.active .faq-question::after {
	content: '−';
	transform: rotate(180deg);
}

.dr1015faq .faq-answer {
	max-height: 0;
	overflow: hidden;
	background-color: #fffef6;
	transition: max-height 0.4s ease;
	padding: 0 1.5rem;
	font-size: 1rem;
	color: #4e4e4e;
}

.dr1015faq .faq-item.active .faq-answer {
	padding: 1rem 1.5rem 1.5rem;
	max-height: 500px; /* enough to show full answer */
}

/* Responsive */
@media ( max-width : 600px) {
	.dr1015faq .faq-title {
		font-size: 2rem;
	}
	.dr1015faq .faq-subtitle {
		font-size: 1rem;
	}
}