body {
	font-family: 'Poppins', Arial, sans-serif;
	background: #f7f8fa;
	color: #222;
	margin: 0;
	padding: 0;
}

.container {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}

header {
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	padding: 18px 0;
	margin-bottom: 24px;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	font-size: 2rem;
	font-weight: 700;
	color: #2d7cff;
	text-decoration: none;
	letter-spacing: 1px;
}

.nav-links a {
	color: #444;
	text-decoration: none;
	margin-left: 28px;
	font-weight: 500;
	transition: color 0.2s;
}

.nav-links a:hover {
	color: #2d7cff;
}

.hero-section {
	background: linear-gradient(90deg, #e3f0ff 0%, #f7f8fa 100%);
	padding: 48px 0 36px 0;
	border-radius: 0 0 32px 32px;
	margin-bottom: 32px;
	text-align: center;
}

.hero-section h1 {
	font-size: 2.3rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #2d7cff;
}

.hero-subtitle {
	font-size: 1.15rem;
	color: #555;
	margin-bottom: 24px;
}

.search-bar input {
	width: 100%;
	max-width: 420px;
	padding: 12px 16px;
	border: 1.5px solid #b3d1ff;
	border-radius: 8px;
	font-size: 1rem;
	margin-bottom: 18px;
	outline: none;
	transition: border 0.2s;
}

.search-bar input:focus {
	border-color: #2d7cff;
}

.popular-tags {
	margin-top: 8px;
	font-size: 1rem;
}

.tag {
	display: inline-block;
	background: #e3f0ff;
	color: #2d7cff;
	border-radius: 16px;
	padding: 4px 14px;
	margin: 0 5px 5px 0;
	font-size: 0.98rem;
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
}

.tag:hover {
	background: #2d7cff;
	color: #fff;
}

.featured-businesses {
	margin-bottom: 40px;
}

.featured-businesses h2 {
	font-size: 1.5rem;
	margin-bottom: 18px;
	color: #2d7cff;
}

.featured-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}

.business-card {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 12px rgba(45,124,255,0.07);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s, transform 0.2s;
	display: flex;
	flex-direction: column;
	min-height: 340px;
}

.business-card:hover {
	box-shadow: 0 6px 24px rgba(45,124,255,0.13);
	transform: translateY(-4px) scale(1.02);
}

.business-card img {
	width: 100%;
	height: 140px;
	object-fit: cover;
	background: #e3f0ff;
}

.card-content {
	padding: 18px 16px 14px 16px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.card-content .name {
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 6px;
	color: #2d7cff;
}

.card-content .rating {
	font-size: 0.98rem;
	color: #f7b731;
	margin-bottom: 6px;
}

.card-content .category,
.card-content .location {
	font-size: 0.95rem;
	color: #555;
	margin-bottom: 4px;
}

.cta-button {
	display: inline-block;
	background: #2d7cff;
	color: #fff;
	border-radius: 8px;
	padding: 6px 16px;
	font-size: 0.98rem;
	font-weight: 500;
	margin-top: 10px;
	text-align: center;
	transition: background 0.2s;
}

.cta-button:hover {
	background: #1a5dcc;
}

.explore-categories {
	margin-bottom: 40px;
}

.explore-categories h2 {
	font-size: 1.35rem;
	margin-bottom: 16px;
	color: #2d7cff;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}

.add-business-section {
	background: #e3f0ff;
	border-radius: 24px;
	padding: 36px 0;
	margin-bottom: 40px;
	text-align: center;
}

.add-business-section h2 {
	color: #2d7cff;
	margin-bottom: 10px;
}

.add-business-section .btn {
	display: inline-block;
	background: #2d7cff;
	color: #fff;
	border-radius: 8px;
	padding: 10px 28px;
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: 18px;
	text-decoration: none;
	transition: background 0.2s;
}

.add-business-section .btn:hover {
	background: #1a5dcc;
}

footer {
	background: #fff;
	border-top: 1px solid #e3f0ff;
	padding: 24px 0 12px 0;
	text-align: center;
	font-size: 0.98rem;
	color: #888;
}

.footer-links {
	margin-bottom: 10px;
}

.footer-links a {
	color: #2d7cff;
	text-decoration: none;
	margin: 0 10px;
	font-weight: 500;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: #1a5dcc;
}

@media (max-width: 700px) {
	.container {
		width: 98%;
		padding: 0 6px;
	}
	.navbar {
		flex-direction: column;
		align-items: flex-start;
	}
	.nav-links {
		margin-top: 10px;
	}
	.featured-grid, .category-grid {
		grid-template-columns: 1fr;
	}
}