* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; scroll-behavior: smooth; }
        body { background-color: #f8f9fa; overflow-x: hidden; width: 100%; }

        /* Navigation */
        nav { background: #1e272e; color: white; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1001; box-shadow: 0 2px 10px rgba(0,0,0,0.2); width: 100%; }
        .logo { font-weight: 700; font-size: 20px; color: #00d8d6; }
        .nav-links { display: flex; list-style: none; }
        .nav-links li { margin-left: 25px; }
        .nav-links a { color: white; text-decoration: none; font-size: 15px; }
        .nav-links a:hover { color: #00d8d6; }
        .hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
        .hamburger span { width: 25px; height: 3px; background: white; border-radius: 2px; }

        /* Grid Layout */
        .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        .card { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: 0.3s; display: flex; flex-direction: column; height: 100%; }
        .card:hover { transform: translateY(-5px); }
        .card img { width: 100%; height: 200px; object-fit: cover; }
        
        .card-body { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; }
        .card-body h3 { font-size: 18px; margin-bottom: 12px; color: #1e272e; border-bottom: 2px solid #00d8d6; padding-bottom: 5px; display: inline-block; width: fit-content; }
        
        /* Content Styling */
        .price-tag { color: #2d3436; font-size: 14px; font-weight: 600; margin-bottom: 5px; }
        .hostel-info { font-size: 13px; color: #636e72; line-height: 1.5; margin-bottom: 15px; flex-grow: 1; }
        
        /* Address Box Styling */
        .address-box { display: flex; gap: 10px; align-items: flex-start; background: #f1f2f6; padding: 12px; border-radius: 8px; margin-bottom: 15px; }
        .address-box i { color: #ff1d1d; font-size: 18px; margin-top: 3px; }
        .address-text { font-size: 12px; color: #2f3542; line-height: 1.4; font-weight: 400; }

        .btn-group { display: flex; gap: 10px; margin-top: auto; }
        .btn { flex: 1; padding: 10px; text-align: center; text-decoration: none; border-radius: 6px; font-weight: 600; font-size: 13px; transition: 0.3s; }
        .view-btn { border: 1.5px solid #1e272e; color: #1e272e; }
        .view-btn:hover { background: #1e272e; color: white; }
        .enquiry-btn { background: #25D366; color: white; border: 1.5px solid #25D366; }
        .enquiry-btn:hover { background: #128C7E; }

        .container { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
        .section-header { text-align: center; margin-bottom: 30px; }
        .section-header h2 { font-size: 28px; color: #1e272e; text-transform: uppercase; }
        .line { width: 60px; height: 4px; background: #00d8d6; margin: 10px auto; }

        footer { background: #1e272e; color: white; text-align: center; padding: 30px 20px; width: 100%; margin-top: 40px; }
        footer .brand { color: #00d8d6; font-weight: 700; margin-bottom: 5px; display: block; }

        @media (max-width: 992px) { .grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 768px) {
            .grid { grid-template-columns: 1fr; }
            .nav-links { position: fixed; right: -100%; top: 60px; height: 100vh; background: #1e272e; width: 75%; flex-direction: column; align-items: center; padding-top: 50px; z-index: 1000; transition: 0.5s; }
            .nav-links.active { right: 0; }
            .nav-links li { margin: 15px 0; }
            .hamburger { display: flex; }
        }
