Changed around line 1
+ :root {
+ --primary-color: #2563eb;
+ --secondary-color: #1e40af;
+ --background-color: #f8fafc;
+ --text-color: #1e293b;
+ --white: #ffffff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Segoe UI', sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ header {
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: var(--white);
+ padding: 1rem 0;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ text-decoration: none;
+ color: var(--white);
+ }
+
+ nav ul {
+ list-style: none;
+ display: flex;
+ gap: 1rem;
+ }
+
+ nav a {
+ color: var(--white);
+ text-decoration: none;
+ transition: opacity 0.3s;
+ }
+
+ nav a:hover {
+ opacity: 0.8;
+ }
+
+ .hero {
+ text-align: center;
+ padding: 4rem 1rem;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .search-form {
+ max-width: 600px;
+ margin: 0 auto;
+ display: flex;
+ gap: 0.5rem;
+ }
+
+ .search-form input {
+ flex: 1;
+ padding: 0.75rem;
+ border: none;
+ border-radius: 4px;
+ }
+
+ .search-form button {
+ padding: 0.75rem 1.5rem;
+ background-color: var(--white);
+ color: var(--primary-color);
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ transition: background-color 0.3s;
+ }
+
+ .search-form button:hover {
+ background-color: #e2e8f0;
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .categories {
+ margin-bottom: 3rem;
+ }
+
+ .categories h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ }
+
+ .category-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1.5rem;
+ }
+
+ .category-card {
+ background-color: var(--white);
+ padding: 1.5rem;
+ border-radius: 8px;
+ text-align: center;
+ text-decoration: none;
+ color: var(--text-color);
+ transition: transform 0.3s, box-shadow 0.3s;
+ }
+
+ .category-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .category-card img {
+ width: 80px;
+ height: 80px;
+ margin-bottom: 1rem;
+ }
+
+ .featured-businesses {
+ margin-bottom: 3rem;
+ }
+
+ .featured-businesses h2 {
+ text-align: center;
+ margin-bottom: 2rem;
+ }
+
+ .business-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 1.5rem;
+ }
+
+ footer {
+ background-color: var(--text-color);
+ color: var(--white);
+ padding: 2rem 1rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section h3 {
+ margin-bottom: 1rem;
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section a {
+ color: var(--white);
+ text-decoration: none;
+ transition: opacity 0.3s;
+ }
+
+ .footer-section a:hover {
+ opacity: 0.8;
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+ }