.areas-page {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 15px 60px;
}

.areas-hero {
	text-align: center;
	padding: 40px 0 24px;
}

.areas-hero h1 {
	color: #1e1d24;
	font-size: 2.4rem;
	font-weight: 800;
	margin-bottom: 16px;
}

.areas-hero p {
	color: #444;
	font-size: 1.05rem;
	line-height: 1.7;
	max-width: 760px;
	margin: 0 auto 12px;
}

.areas-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 28px 0 32px;
}

.areas-filter-btn {
	background: #fff;
	border: 2px solid #ddd;
	border-radius: 999px;
	color: #1e1d24;
	cursor: pointer;
	font-size: 0.9rem;
	font-weight: 600;
	padding: 8px 18px;
	transition: all 0.2s ease;
}

.areas-filter-btn:hover,
.areas-filter-btn.is-active {
	background: #93ce20;
	border-color: #93ce20;
	color: #1e1d24;
}

.areas-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 18px;
}

.areas-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	display: block;
	padding: 20px;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.areas-card:hover {
	border-color: #93ce20;
	box-shadow: 0 8px 24px rgba(147, 206, 32, 0.2);
	transform: translateY(-2px);
}

.areas-card h3 {
	color: #1e1d24;
	font-size: 1.15rem;
	font-weight: 700;
	margin: 0 0 6px;
}

.areas-card .areas-county {
	color: #93ce20;
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.areas-card p {
	color: #555;
	font-size: 0.92rem;
	line-height: 1.55;
	margin: 0;
}

.areas-note {
	background: #f7f7f7;
	border-left: 4px solid #93ce20;
	color: #444;
	font-size: 0.98rem;
	line-height: 1.6;
	margin: 36px 0;
	padding: 16px 20px;
}

.areas-cta {
	background: #1e1d24;
	border-radius: 14px;
	color: #fff;
	margin-top: 48px;
	padding: 36px 24px;
	text-align: center;
}

.areas-cta h2 {
	color: #fff;
	font-size: 1.8rem;
	margin: 0 0 10px;
}

.areas-cta p {
	color: #ddd;
	margin: 0 0 22px;
}

.areas-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.areas-cta .areas-btn {
	border-radius: 999px;
	display: inline-block;
	font-weight: 700;
	padding: 12px 24px;
	text-decoration: none;
}

.areas-cta .areas-btn-call {
	background: #93ce20;
	color: #1e1d24;
}

.areas-cta .areas-btn-quote {
	border: 2px solid #93ce20;
	color: #93ce20;
}

.areas-card.is-hidden {
	display: none;
}

@media (max-width: 767px) {
	.areas-hero h1 {
		font-size: 1.9rem;
	}
}
