.dr1057faq {
	padding: 60px 20px;
	background: radial-gradient(circle at top, #0a0f1f, #05070f);
	color: #fff;
	font-family: "Segoe UI", sans-serif;
}

/* container */
.dr1057faq-container {
	max-width: 900px;
	margin: auto;
	text-align: center;
}

/* title */
.dr1057faq-title {
	font-size: 2.3rem;
	margin-bottom: 10px;
	background: linear-gradient(90deg, gold, #fff, gold);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.dr1057faq-subtitle {
	color: #aaa;
	margin-bottom: 40px;
}

/* list */
.dr1057faq-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

/* item */
.dr1057faq-item {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 215, 0, 0.3);
	border-radius: 14px;
	overflow: hidden;
	backdrop-filter: blur(10px);
	transition: transform 0.3s, box-shadow 0.3s;
}

/* hover 3D */
.dr1057faq-item:hover {
	transform: translateY(-3px) scale(1.01);
	box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

/* question button */
.dr1057faq-question {
	width: 100%;
	text-align: left;
	padding: 18px 20px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 1rem;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* icon */
.dr1057faq-icon {
	font-size: 1.5rem;
	color: gold;
	transition: transform 0.3s;
}

/* answer */
.dr1057faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 20px;
	color: #ccc;
	line-height: 1.6;
	transition: all 0.4s ease;
}

/* active state */
.dr1057faq-item.active .dr1057faq-answer {
	max-height: 200px;
	padding: 0 20px 18px;
}

.dr1057faq-item.active .dr1057faq-icon {
	transform: rotate(45deg);
}

/* responsive */
@media ( max-width : 600px) {
	.dr1057faq-title {
		font-size: 1.7rem;
	}
}