.dr1059faq {
	padding: 120px 20px;
	font-family: 'Poppins', sans-serif;
	background: radial-gradient(circle at top left, rgba(201, 161, 74, 0.12),
		transparent 40%),
		radial-gradient(circle at bottom right, rgba(30, 58, 138, 0.12),
		transparent 40%), linear-gradient(135deg, #020617, #0B1C2C, #020617);
	overflow: hidden;
}

/* CONTAINER */
.dr1059faq .faq-container {
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

/* IMAGE */
.dr1059faq .img-wrap {
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px
		rgba(201, 161, 74, 0.15);
	transition: .5s ease;
}

.dr1059faq .img-wrap img {
	width: 100%;
	display: block;
}

.dr1059faq .img-wrap:hover {
	transform: scale(1.03);
}

/* CONTENT */
.dr1059faq .faq-content {
	color: #fff;
}

/* TAG */
.dr1059faq .faq-tag {
	padding: 8px 18px;
	border-radius: 40px;
	font-size: 12px;
	letter-spacing: 2px;
	font-weight: 600;
	color: #E6C36A;
	background: rgba(201, 161, 74, 0.08);
	border: 1px solid rgba(201, 161, 74, 0.3);
}

/* HEADING */
.dr1059faq h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-top: 20px;
	font-weight: 800;
}

.dr1059faq h2 span {
	display: block;
	font-size: 1.1rem;
	color: #C9A14A;
	margin-top: 6px;
}

/* DESC */
.dr1059faq .faq-desc {
	margin-top: 20px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.8;
}

/* FAQ ITEMS */
.dr1059faq .faq-list {
	margin-top: 30px;
}

/* ITEM */
.dr1059faq .faq-item {
	margin-bottom: 15px;
	border-radius: 16px;
	overflow: hidden;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.05),
		rgba(255, 255, 255, 0.02));
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
}

/* QUESTION */
.dr1059faq .faq-question {
	width: 100%;
	padding: 18px 20px;
	text-align: left;
	font-weight: 600;
	font-size: 15px;
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
	position: relative;
}

/* ICON */
.dr1059faq .faq-question::after {
	content: "+";
	position: absolute;
	right: 20px;
	font-size: 20px;
	color: #C9A14A;
	transition: .3s;
}

/* ACTIVE */
.dr1059faq .faq-item.active .faq-question::after {
	content: "−";
}

/* ANSWER */
.dr1059faq .faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	padding: 0 20px;
}

.dr1059faq .faq-answer p {
	padding: 10px 0 20px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.7;
}

/* OPEN STATE */
.dr1059faq .faq-item.active .faq-answer {
	max-height: 200px;
}

/* RESPONSIVE */
@media ( max-width : 900px) {
	.dr1059faq .faq-container {
		grid-template-columns: 1fr;
	}
}