/* FAQ widget styles (match Downloads/Homepage.html) */

.agp-faq-widget.faq-wrap {
	--teal: #1aa18c;
	--teal-dark: #148a77;
	--teal-light: #e6f7f5;
	--navy: #0d1b2a;
	--gray: #6b7280;
	--light: #f9fafb;
	--white: #fff;
	--border: #e5e7eb;

	background: var(--white);
	border-top: 1px solid var(--border);
	padding: 0 40px;
}

.agp-faq-widget .faq-inner {
	max-width: 800px;
	margin: 0 auto;
	padding: 96px 0;
}

.agp-faq-widget .faq-item {
	border-bottom: 1px solid var(--border);
}

.agp-faq-widget .section-pill {
	background: var(--teal-light);
	color: var(--teal-dark);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 100px;
	margin-bottom: 20px;
	padding: 6px 14px;
	font-size: 11px;
	font-weight: 600;
	display: inline-block;
}

.agp-faq-widget .section-h2 {
	color: var(--navy);
	margin-bottom: 14px;
	font-size: 38px;
	font-weight: 800;
	line-height: 1.2;
}

.agp-faq-widget .faq-q {
	cursor: pointer;
	width: 100%;
	color: var(--navy);
	text-align: left;
	background: 0 0;
	border: none;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 24px 0;
	font-family: Sora, sans-serif;
	font-size: 15px;
	font-weight: 600;
	display: flex;
}

.agp-faq-widget .faq-q:hover {
	color: var(--teal);
}

.agp-faq-widget .faq-a {
	color: var(--gray);
	padding-bottom: 24px;
	font-size: 14px;
	line-height: 1.75;
	display: none;
}

.agp-faq-widget .faq-item.open .faq-a {
	display: block;
}

.agp-faq-widget .faq-icon {
	color: var(--teal);
	flex-shrink: 0;
	font-size: 20px;
	transition: transform 0.2s;
}

.agp-faq-widget .faq-item.open .faq-icon {
	transform: rotate(45deg);
}

@media (max-width: 900px) {
	.agp-faq-widget.faq-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}

	.agp-faq-widget .section-h2 {
		font-size: 28px;
	}
}

