body { font-family: 'Open Sans', 'Segoe UI', sans-serif; margin: 0; padding: 0; background-color: #f7f9fc; color: #333; }
        header { background: #fff; padding: 20px 10%; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 5px rgba(0,0,0,0.05); position: sticky; top:0; z-index: 1000; }
        .logo { font-size: 1.8rem; font-weight: bold; color: #2c3e50; cursor: pointer; }
        .logo span { color: #3498db; }
        nav { display: flex; align-items: center; gap: 20px; }
        nav a { color: #555; text-decoration: none; font-weight: 600; cursor: pointer; padding: 8px 12px; border-radius: 4px; transition: 0.3s; }
        nav a:hover, nav a.active { color: #fff; background: #3498db; }
        
        .view-content { display: none; animation: fadeUp 0.5s ease; min-height: 80vh; }
        .view-content.active { display: block; }
        @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

        .hero { background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover; padding: 120px 10%; display: flex; align-items: center; }
        .search-box { background: rgba(255,255,255,0.95); padding: 40px; border-radius: 8px; max-width: 450px; box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
        .search-box h2 { margin-top: 0; color: #2c3e50; font-size: 2rem; }
        .search-box input, .search-box select { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; border-radius: 4px; box-sizing: border-box; font-family: inherit; font-size: 1rem; }
        .btn { width: 100%; background: #3498db; color: #fff; padding: 15px; border: none; border-radius: 4px; font-weight: bold; cursor: pointer; font-size: 1.1rem; transition: 0.3s; }
        .btn:hover { background: #2980b9; }

        .page-header { background: #2c3e50; color: white; padding: 60px 10%; text-align: center; }
        .page-header h1 { margin: 0; font-size: 2.5rem; }

        .listings { padding: 60px 10%; }
        .listings h2 { text-align: center; color: #2c3e50; font-size: 2.2rem; margin-bottom: 40px; }
        .property-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; }
        .property { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; cursor: pointer; }
        .property:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
        .property-img { height: 220px; background-size: cover; background-position: center; position: relative; }
        .status-badge { position: absolute; top: 15px; left: 15px; background: #e74c3c; color: white; padding: 5px 10px; border-radius: 4px; font-weight: bold; font-size: 0.8rem; letter-spacing: 1px; }
        .property-info { padding: 25px; }
        .price { font-size: 1.6rem; font-weight: bold; color: #3498db; margin-bottom: 5px; }
        .address { color: #666; margin-bottom: 20px; font-size: 0.95rem; line-height: 1.4; height: 40px; }
        .specs { display: flex; justify-content: space-between; border-top: 1px solid #eee; padding-top: 15px; font-size: 0.9rem; color: #555; font-weight: 600; }

        .contact-form { max-width: 600px; margin: 40px auto; background: white; padding: 40px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }

        footer { background: #2c3e50; color: #bdc3c7; text-align: center; padding: 40px 10%; margin-top: auto; font-size: 0.9rem; border-top: 5px solid #3498db; }