:root {
	--cream: #F6F1E8;
	--white: #FFFFFF;
	--navy: #16223F;
	--amber: #C99A3E;
	--amber-deep: #A97E2C;
	--text-body: #4A5872;
	--text-muted: #8188A0;
	--line: #E7E2D3;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Outfit', sans-serif;
	background: var(--cream);
	color: var(--text-body);
}

h1, h2, .display {
	font-family: 'Outfit', sans-serif;
}

.wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 32px;
}

/* ================= HEADER BAND ================= */
.top {
	padding: 50px 0 25px;
	text-align: center;
}

.kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--amber-deep);
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	margin-bottom: 22px;
}

.kicker::before, .kicker::after {
	content: "";
	width: 24px;
	height: 1px;
	background: var(--amber);
}

.top h1 {
	font-size: 42px;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 16px;
}

.top p {
	font-size: 14.5px;
	line-height: 1.8;
	color: var(--text-body);
	max-width: 520px;
	margin: 0 auto;
}

/* ================= FAQ LIST ================= */
.faq-section {
	padding: 20px 0 90px;
}

.group {
	margin-bottom: 48px;
}

.group:last-child {
	margin-bottom: 0;
}

.group-title {
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--amber-deep);
	margin-bottom: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--line);
}

details {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 10px;
	margin-bottom: 12px;
	box-shadow: 0 2px 10px rgba(22, 34, 63, 0.05);
}

details summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 24px;
	cursor: pointer;
	font-family: 'Outfit', sans-serif;
	font-size: 16.5px;
	font-weight: 500;
	color: var(--navy);
}

details summary::-webkit-details-marker {
	display: none;
}

.q-num {
	font-family: 'Outfit', sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: var(--amber-deep);
	margin-right: 12px;
}

.plus {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	border: 1px solid var(--amber);
	color: var(--amber-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	font-family: 'Outfit', sans-serif;
	transition: transform 0.25s ease;
}

details[open] {
	border-color: var(--amber);
}

details[open] .plus {
	transform: rotate(45deg);
	background: var(--amber);
	color: #fff;
}

.answer {
	padding: 0 62px 42px 62px;
	font-size: 15px;
	line-height: 1.85;
	color: var(--text-muted);
	max-width: 100%;
}

/* ================= CLOSING CTA ================= */
.closing {
	background: var(--navy);
	padding: 56px 0;
	text-align: center;
}

.closing h3 {
	font-size: 20px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 10px;
}

.closing h3 span {
	color: var(--amber);
}

.closing p {
	font-size: 16px;
	color: #AEB6C9;
	margin-bottom: 22px;
}

.closing a {
	display: inline-block;
	background: var(--amber);
	color: var(--navy);
	font-size: 13px;
	font-weight: 700;
	padding: 12px 28px;
	border-radius: 999px;
	text-decoration: none;
}

@media (max-width: 600px) {
	.top h1 {
		font-size: 30px;
	}

	details summary {
		font-size: 15px;
		padding: 18px 18px;
	}

	.answer {
		padding: 0 18px 20px 18px;
	}

	.q-num {
		display: none;
	}
}
