        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            background-color: #f5f5f5;
        }

        .header {
            background-color: #ffeb3b;
            padding: 1rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .nav {
            background-color: #333;
            padding: 1rem;
            color: white;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .nav a {
            color: white;
            text-decoration: none;
        }

        .search-section {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/api/placeholder/1200/400');
            background-size: cover;
            color: white;
            padding: 3rem;
            text-align: center;
        }

        .search-box {
            max-width: 800px;
            margin: 2rem auto;
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .search-box input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 4px;
            min-width: 200px;
        }

        .search-box button {
            padding: 1rem 2rem;
            background-color: #ffeb3b;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .category-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .category-card:hover {
            transform: translateY(-5px);
        }

        .featured-businesses, .special-offers, .events-section {
            background-color: white;
            padding: 2rem;
            margin: 2rem 0;
        }

        .business-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .business-card {
            border: 1px solid #ddd;
            padding: 1rem;
            border-radius: 4px;
            position: relative;
        }

        .business-card .reviews {
            margin: 1rem 0;
        }

        .review-card {
            background: #f9f9f9;
            padding: 1rem;
            margin: 0.5rem 0;
            border-radius: 4px;
        }

        .map-section {
            padding: 2rem;
            background: white;
            margin: 2rem 0;
        }

        .map-container {
            background: #eee;
            height: 400px;
            margin: 1rem 0;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .offers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .offer-card {
            background: #fff4e5;
            padding: 1rem;
            border-radius: 4px;
            border: 2px dashed #ffa000;
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 1rem;
        }

        .event-card {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .footer {
            background-color: #333;
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .promotion-banner {
            background-color: #ff5722;
            color: white;
            padding: 1rem;
            text-align: center;
            margin: 2rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            color: #333;
        }

        .badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: #ff5722;
            color: white;
            padding: 0.5rem;
            border-radius: 50%;
            font-size: 0.8rem;
        }