.nac-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: start;
	text-align: left;
}

@media (max-width: 1024px) {
	.nac-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.nac-grid {
		grid-template-columns: 1fr;
	}
}

.nac-country {
	background: #f7f7f7;
	border-radius: 6px;
	overflow: hidden;
}

.nac-toggle {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
	background: transparent;
	border: none;
	cursor: pointer;
	font-weight: 700;
	font-size: 1.05rem;
	padding: 16px 18px;
	text-align: left;
	color: #1a1a1a;
	font-family: inherit;
}

.nac-chevron {
	width: 10px;
	height: 10px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: rotate(45deg);
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

.nac-toggle[aria-expanded='true'] .nac-chevron {
	transform: rotate(-135deg);
}

.nac-panel {
	padding: 0 18px 16px;
	text-align: left;
}

.nac-group {
	border-top: 1px solid #e2e2e2;
}

.nac-group:first-child {
	border-top: none;
}

.nac-toggle-sub {
	padding: 12px 0 12px 20px;
	font-weight: 600;
	font-size: 0.95rem;
}

.nac-group-panel {
	padding: 0 0 12px 34px;
}

.nac-items {
	list-style: decimal;
	margin: 0;
	padding-left: 20px;
	text-align: left !important;
}

.nac-items li {
	padding: 6px 0;
	font-size: 0.9rem;
	line-height: 1.4;
	text-align: left !important;
}

.nac-items a {
	color: inherit;
	text-decoration: underline;
}
