
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #f5f5f5;
            color: #333;
        }

        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        header {
            background: white;
            padding: 1rem 2rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            font-weight: bold;
            cursor: pointer;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: #26a69a;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .logo-text {
            color: #333;
        }

        .logo-text span {
            color: #26a69a;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            cursor: pointer;
            transition: color 0.3s;
        }

        .nav-links a:hover, .nav-links a.active {
            color: #26a69a;
        }

        .hero {
            background: linear-gradient(135deg, #f5f5f5 0%, #e8f5f4 100%);
            padding: 4rem 2rem;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 2rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .hero h1 .highlight {
            color: #26a69a;
        }

        .hero p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        .search-box {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 1.5rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .search-field {
            flex: 1;
            min-width: 200px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
        }

        .search-field select {
            border: none;
            outline: none;
            font-size: 1rem;
            width: 100%;
            background: transparent;
        }

        .search-btn {
            background: #ff7043;
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .search-btn:hover {
            background: #ff5722;
        }

        .features {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 3rem;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #666;
        }

        .section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
        }

        .section h2 {
            font-size: 2rem;
            color: #333;
        }

        .section-subtitle {
            color: #666;
            margin-top: 0.5rem;
        }

        .view-all {
            color: #26a69a;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: #333;
        }

        .provider-count {
            background: #f5f5f5;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            color: #666;
        }

        .service-card p {
            color: #666;
            margin-bottom: 1.5rem;
        }

        .find-providers {
            color: #26a69a;
            font-weight: 600;
        }

        .top-rated-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .top-rated-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            text-align: center;
        }

        .top-rated-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: #e0e0e0;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .top-rated-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .top-rated-service {
            color: #666;
            margin-bottom: 1rem;
        }

        .top-rated-rating {
            color: #ffa000;
            font-size: 1.25rem;
            font-weight: 600;
        }

        .cta-section {
            background: #26a69a;
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            margin: 4rem 2rem;
            border-radius: 16px;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .cta-btn {
            background: white;
            color: #26a69a;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
        }

        .providers-list {
            display: grid;
            gap: 2rem;
        }

        .provider-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .provider-info {
            display: flex;
            gap: 1.5rem;
            align-items: center;
        }

        .provider-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
        }

        .provider-details h3 {
            font-size: 1.25rem;
            color: #333;
        }

        .verified-badge {
            color: #26a69a;
        }

        .provider-meta {
            display: flex;
            gap: 1rem;
            margin: 0.5rem 0;
            color: #666;
            font-size: 0.875rem;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #ffa000;
        }

        .service-tag {
            display: inline-block;
            background: #e0f2f1;
            color: #26a69a;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            margin-top: 0.5rem;
        }

        .whatsapp-btn {
            background: #25d366;
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
        }

        .filter-bar {
            background: white;
            padding: 1rem 2rem;
            margin-bottom: 2rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .filter-tag {
            padding: 0.5rem 1rem;
            border-radius: 20px;
            border: 1px solid #e0e0e0;
            background: white;
            cursor: pointer;
            font-size: 0.875rem;
        }

        .filter-tag.active {
            background: #26a69a;
            color: white;
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .required {
            color: #ff5722;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            font-family: inherit;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-hint {
            font-size: 0.875rem;
            color: #666;
            margin-top: 0.5rem;
        }

        .submit-btn {
            width: 100%;
            background: #26a69a;
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
        }

        .form-footer {
            text-align: center;
            font-size: 0.875rem;
            color: #666;
            margin-top: 1rem;
        }

        footer {
            background: #2c3e50;
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #bbb;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            .search-box {
                flex-direction: column;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
            .provider-card {
                flex-direction: column;
            }
        }