* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
            background: #fff;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .logo span {
            color: #666;
            font-weight: 400;
            font-size: 18px;
            -webkit-text-fill-color: #666;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }
        
        nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover,
        nav a.active {
            color: #667eea;
        }
        
        .mobile-menu {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }
        
        .page-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 42px;
            margin-bottom: 15px;
        }
        
        .page-header p {
            font-size: 20px;
            opacity: 0.9;
        }
        
        .reviews-section {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .reviews-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .reviews-header h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .rating-summary {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .overall-rating {
            text-align: center;
        }
        
        .rating-number {
            font-size: 48px;
            font-weight: bold;
            color: #333;
        }
        
        .rating-stars {
            color: #f39c12;
            font-size: 24px;
            margin: 10px 0;
        }
        
        .review-count {
            color: #666;
            font-size: 16px;
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            position: relative;
        }
        
        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .reviewer-info {
            flex: 1;
        }
        
        .reviewer-name {
            font-weight: 600;
            font-size: 18px;
            color: #333;
            margin-bottom: 5px;
        }
        
        .review-location {
            color: #666;
            font-size: 14px;
        }
        
        .review-date {
            color: #999;
            font-size: 14px;
        }
        
        .review-rating {
            color: #f39c12;
            font-size: 18px;
        }
        
        .review-text {
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .review-verified {
            display: inline-block;
            padding: 4px 10px;
            background: #e8f5e9;
            color: #27ae60;
            font-size: 12px;
            font-weight: 600;
            border-radius: 4px;
        }
        
        .review-form-section {
            background: white;
            padding: 60px 0;
            text-align: center;
        }
        
        .review-form {
            max-width: 600px;
            margin: 0 auto;
            padding: 40px;
            background: #f8f9fa;
            border-radius: 12px;
        }
        
        .review-form h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: #333;
        }
        
        .form-group {
            margin-bottom: 25px;
            text-align: left;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 16px;
            font-family: inherit;
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .star-rating {
            display: flex;
            gap: 10px;
            font-size: 28px;
        }
        
        .star {
            cursor: pointer;
            color: #ddd;
            transition: color 0.2s;
        }
        
        .star:hover,
        .star.active {
            color: #f39c12;
        }
        
        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 40px;
            border: none;
            border-radius: 6px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
        }
        
        .success-message {
            display: none;
            padding: 20px;
            background: #e8f5e9;
            color: #27ae60;
            border-radius: 6px;
            margin-top: 20px;
            font-weight: 600;
        }
        
        footer {
            background: #2c3e50;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-section p,
        .footer-section ul {
            color: #95a5a6;
            line-height: 1.8;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 30px;
            text-align: center;
            color: #95a5a6;
        }
        
        .legal-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .legal-links a {
            color: #95a5a6;
            text-decoration: none;
        }
        
        .legal-links a:hover {
            color: white;
        }
        
        .footer-section a[href^="tel:"],
        .footer-section a[href^="mailto:"],
        .footer-section a[href^="https://wa.me/"] {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a[href^="tel:"]:hover,
        .footer-section a[href^="mailto:"]:hover,
        .footer-section a[href^="https://wa.me/"]:hover {
            color: white;
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .page-header h1 {
                font-size: 32px;
            }
            
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            
            .rating-summary {
                flex-direction: column;
                gap: 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 28px;
            }
            
            .reviews-header h2 {
                font-size: 28px;
            }
        }