 /* Ezozo Theme Styles */
        body {
            font-family: arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #fff;
            color: #202124;
        }
        
        /* Header Styles */
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 30px;
            background-color: #fff;
            box-shadow: 0 1px 6px rgba(32,33,36,.28);
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
            width: auto;
            margin-right: 10px;
        }
        
        .logo span {
            color: #202124;
            font-size: 22px;
            font-weight: 400;
        }
        
        .header-nav {
            display: flex;
            align-items: center;
        }
        
        .header-nav a {
            color: #202124;
            text-decoration: none;
            margin-left: 15px;
            font-size: 13px;
        }
        
        .header-nav a:hover {
            text-decoration: underline;
        }
        
        .sign-in-btn {
            background-color: #4285f4;
            color: white;
            padding: 7px 15px;
            border-radius: 4px;
            font-weight: 500;
        }
        
        .sign-in-btn:hover {
            background-color: #356ac3;
            text-decoration: none;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #d42c29 0%, #e86d39 100%);
            color: #fff;
            text-align: center;
            padding: 80px 15px;
        }
        
        .hero h1 {
            margin: 0 0 12px;
            font-size: 2.4em;
            font-weight: 400;
        }
        
        .hero p {
            font-size: 1.2em;
            margin: 0 0 25px;
        }
        
        .btn {
            display: inline-block;
            background: #fff;
            color: #d42c29;
            padding: 10px 22px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
        }
        
        .btn-alt {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
        }
        
        /* Quick Search Section */
        .quick-search {
            background: #f8f9fa;
            padding: 40px 15px;
        }
        
        .quick-search h3 {
            text-align: center;
            margin-top: 0;
            color: #202124;
            font-weight: 400;
        }
        
        .quick-search form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .quick-search input,
        .quick-search select {
            flex: 1 1 160px;
            padding: 10px 15px;
            border: 1px solid #dadce0;
            border-radius: 4px;
            font-size: 16px;
            background-color: #fff;
            box-sizing: border-box;
        }
        
        .quick-search input:focus,
        .quick-search select:focus {
            outline: none;
            border-color: #4285f4;
            box-shadow: 0 0 0 2px rgba(66,133,244,0.2);
        }
        
        /* Latest Members Section */
        .latest {
            margin: 50px auto;
            max-width: 1140px;
            padding: 0 15px;
        }
        
        .latest h3 {
            color: #202124;
            font-weight: 400;
            margin-bottom: 20px;
        }
        
        .carousel {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding-bottom: 10px;
        }
        
        .carousel .card {
            flex: 0 0 160px;
            text-align: center;
            background: #fff;
            border: 1px solid #dadce0;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
            transition: box-shadow 0.2s;
        }
        
        .carousel .card:hover {
            box-shadow: 0 1px 3px 0 rgba(60,64,67,0.3), 0 4px 8px 3px rgba(60,64,67,0.15);
        }
        
        .carousel .card img {
            width: 140px;
            height: 140px;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid #dadce0;
        }
        
        .carousel .card div {
            margin-top: 10px;
            color: #5f6368;
            font-size: 14px;
        }
        
        .carousel .card a {
            text-decoration: none;
        }
        
        /* Footer */
        footer {
            background-color: #f2f2f2;
            border-top: 1px solid #dadce0;
        }
        
        .footer-links {
            display: flex;
            justify-content: space-between;
            padding: 15px 20px;
            max-width: 1140px;
            margin: 0 auto;
        }
        
        .footer-links a {
            color: #70757a;
            text-decoration: none;
            font-size: 14px;
            margin: 0 15px;
        }
        
        .footer-links a:hover {
            text-decoration: underline;
        }
        
        .footer-bottom {
            text-align: center;
            padding: 15px 20px;
            color: #70757a;
            font-size: 14px;
        }
        
        .footer-bottom a {
            color: #70757a;
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* AI Badge */
        .ai-badge {
            display: inline-block;
            background-color: #ff9800;
            color: white;
            font-size: 12px;
            padding: 3px 6px;
            border-radius: 4px;
            margin-left: 5px;
            font-weight: 500;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .header-container {
                padding: 15px;
            }
            
            .logo span {
                display: none;
            }
            
            .hero h1 {
                font-size: 1.8em;
            }
            
            .hero p {
                font-size: 1em;
            }
            
            .quick-search form {
                flex-direction: column;
            }
            
            .quick-search input,
            .quick-search select {
                width: 100%;
            }
            
            .carousel .card {
                flex: 0 0 120px;
            }
            
            .carousel .card img {
                width: 100px;
                height: 100px;
            }
            
            .footer-links {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-links a {
                margin: 5px 0;
            }
        }