
    /* Custom CSS for responsive hostel page */
    :root {
      --primary-color: #0d6efd;
      --secondary-color: #6c757d;
      --success-color: #198754;
      --light-bg: #f8f9fa;
      --dark-bg: #212529;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
    }
    
    /* Page Header */
    .page-header {
      background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                  url('assets/images/hostel-banner.jpg') center/cover no-repeat;
      color: white;
      padding: 100px 0 60px;
      text-align: center;
    }
    
    .page-header h1 {
      font-weight: 700;
      margin-bottom: 1rem;
    }
    
    .breadcrumb {
      background: transparent;
      justify-content: center;
    }
    
    .breadcrumb-item a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
    }
    
    .breadcrumb-item.active {
      color: white;
    }
    
    /* Hostel Cards */
    .hostel-card {
      border: none;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      height: 100%;
      overflow: hidden;
    }
    
    .hostel-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }
    
    .hostel-img {
      height: 250px;
      object-fit: cover;
      width: 100%;
    }
    
    .facility-list, .rule-list {
      padding-left: 0;
      list-style: none;
    }
    
    .facility-list li, .rule-list li {
      margin-bottom: 0.5rem;
      padding-left: 1.5rem;
      position: relative;
    }
    
    .facility-list li:before {
      position: absolute;
      left: 0;
    }
    
    .rule-list li:before {
      content: "•";
      position: absolute;
      left: 0;
      color: var(--primary-color);
      font-weight: bold;
    }
    
    /* Boys & Girls Hostel Sections */
    .boys-hostel, .girls-hostel {
      position: relative;
    }
    
    .boys-section h2, .girls-section h2 {
      position: relative;
      display: inline-block;
      padding-bottom: 10px;
    }
    
    .boys-section h2:after, .girls-section h2:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 3px;
      background-color: var(--primary-color);
    }
    
    .boys-section h2 i {
      color: #0d6efd;
    }
    
    .girls-section h2 i {
      color: #e83e8c;
    }
    
    /* Hostel Timings */
    .hostel-timings {
      background-color: var(--light-bg);
      border-radius: 8px;
      padding: 1rem;
      margin-top: 1.5rem;
    }
    
    /* Pricing Cards */
    .pricing-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      padding: 2rem;
      text-align: center;
      height: 100%;
      transition: transform 0.3s ease;
    }
    
    .pricing-card:hover {
      transform: translateY(-5px);
    }
    
    .pricing-card h3 {
      color: var(--primary-color);
      margin-bottom: 1rem;
    }
    
    .price {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--dark-bg);
      margin: 1rem 0;
    }
    
    /* Contact Cards */
    .contact-card {
      background: white;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      padding: 1.5rem;
      height: 100%;
    }
    
    /* Gallery */
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      height: 250px;
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .gallery-item:hover img {
      transform: scale(1.05);
    }
    
    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .page-header {
        padding: 80px 0 40px;
      }
      
      .page-header h1 {
        font-size: 2rem;
      }
      
      .hostel-img {
        height: 200px;
      }
      
      .price {
        font-size: 2rem;
      }
      
      .d-flex.mt-4 {
        flex-direction: column;
        text-align: center;
      }
      
      .d-flex.mt-4 > div {
        margin-bottom: 1rem;
      }
    }
    
    @media (max-width: 576px) {
      .page-header h1 {
        font-size: 1.75rem;
      }
      
      .page-header .lead {
        font-size: 1rem;
      }
      
      .hostel-card .card-body {
        padding: 1rem;
      }
      
      .pricing-card {
        padding: 1.5rem;
      }
    }
    
    /* Utility classes */
    .section-padding {
      padding: 80px 0;
    }
    
    .bg-light-custom {
      background-color: var(--light-bg);
    }
  