/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
  }
  
  /* Navigation Styles */
  .navbar {
    background: #333;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    color: white;
    font-size: 24px;
  }
  
  .navbar .nav-links {
    display: flex;
    list-style: none;
  }
  
  .navbar .nav-links li {
    margin: 0 20px;
  }
  
  .navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .navbar .nav-links li a.active,
  .navbar .nav-links li a:hover {
    color: #ff9800;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
  
  /* Banner Section */
  .banner {
    height: 100vh;
    background: url('../images/banner.jpg') center center/cover no-repeat; /* Update the path to your image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
  }
  
  .banner h1 {
    font-size: 4rem;
    margin-bottom: 20px;
  }
  
  .banner p {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .banner .btn {
    padding: 15px 30px;
    background: #ff9800;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
  }
  
  .banner .btn:hover {
    background: #e68900;
  }
  
  /* Latest News Section */
  .latest-news {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .latest-news h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .news-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .news-card {
    background: #333;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
    transition: transform 0.3s;
  }
  
  .news-card:hover {
    transform: translateY(-10px);
  }
  
  /* Upcoming Events Section */
  .upcoming-events {
    background: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
  }
  
  .upcoming-events h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .upcoming-events ul {
    list-style: none;
  }
  
  .upcoming-events ul li {
    font-size: 1.2rem;
    margin: 10px 0;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .banner h1 {
      font-size: 3rem;
    }
  
    .banner p {
      font-size: 1.2rem;
    }
  
    .banner .btn {
      font-size: 1rem;
    }
  
    .news-container {
      flex-direction: column;
      align-items: center;
    }
  
    .news-card {
      max-width: 100%;
    }
  
    .navbar .nav-links {
      flex-direction: column;
      align-items: center;
      display: none;
    }
  
    .navbar .nav-links.active {
      display: flex;
    }
  
    .navbar .menu-toggle {
      display: block;
    }
  }
  
  @media (max-width: 480px) {
    .navbar .nav-links li {
      margin: 10px 0;
    }
  
    .navbar .logo {
      font-size: 20px;
    }
  
    .banner h1 {
      font-size: 2rem;
    }
  
    .banner p {
      font-size: 1rem;
    }
  
    .banner .btn {
      font-size: 0.9rem;
    }
  }

  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
  }
  
  /* Navigation Styles */
  .navbar {
    background: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    color: white;
    font-size: 24px;
  }
  
  .navbar .nav-links {
    display: flex;
    list-style: none;
  }
  
  .navbar .nav-links li {
    margin: 0 20px;
  }
  
  .navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .navbar .nav-links li a.active,
  .navbar .nav-links li a:hover {
    color: #ff9800;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
  
  /* About Banner Section */
  .about-banner {
    height: 50vh;
    background: url('../images/about-banner.jpg') center center/cover no-repeat; /* Update the path to your image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
  }
  
  .about-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .about-banner p {
    font-size: 1.5rem;
  }
  
  /* About Content Section */
  .about-content {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .about-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
  }
  
  .about-content ul {
    list-style: none;
    padding: 0;
  }
  
  .about-content ul li {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #444;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-banner h1 {
      font-size: 2.5rem;
    }
  
    .about-banner p {
      font-size: 1.2rem;
    }
  
    .navbar .nav-links {
      flex-direction: column;
      align-items: center;
      display: none;
    }
  
    .navbar .nav-links.active {
      display: flex;
    }
  
    .navbar .menu-toggle {
      display: block;
    }
  
    .about-content h2 {
      font-size: 2rem;
    }
  
    .about-content p {
      font-size: 1rem;
    }
  
    .about-content ul li {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .navbar .nav-links li {
      margin: 10px 0;
    }
  
    .navbar .logo {
      font-size: 20px;
    }
  
    .about-banner h1 {
      font-size: 2rem;
    }
  
    .about-banner p {
      font-size: 1rem;
    }
  
    .about-content h2 {
      font-size: 1.5rem;
    }
  
    .about-content p {
      font-size: 0.9rem;
    }
  
    .about-content ul li {
      font-size: 0.9rem;
    }
  }

  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
  }
  
  /* Navigation Styles */
  .navbar {
    background: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    color: white;
    font-size: 24px;
  }
  
  .navbar .nav-links {
    display: flex;
    list-style: none;
  }
  
  .navbar .nav-links li {
    margin: 0 20px;
  }
  
  .navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .navbar .nav-links li a.active,
  .navbar .nav-links li a:hover {
    color: #ff9800;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
  
  /* Academics Banner Section */
  .academics-banner {
    height: 50vh;
    background: url('../images/academics-banner.jpg') center center/cover no-repeat; /* Update the path to your image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
  }
  
  .academics-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .academics-banner p {
    font-size: 1.5rem;
  }
  
  /* Academic Programs Section */
  .academic-programs {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .academic-programs h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .academic-programs p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
  }
  
  .academic-programs ul {
    list-style: none;
    padding: 0;
  }
  
  .academic-programs ul li {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #444;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .academics-banner h1 {
      font-size: 2.5rem;
    }
  
    .academics-banner p {
      font-size: 1.2rem;
    }
  
    .navbar .nav-links {
      flex-direction: column;
      align-items: center;
      display: none;
    }
  
    .navbar .nav-links.active {
      display: flex;
    }
  
    .navbar .menu-toggle {
      display: block;
    }
  
    .academic-programs h2 {
      font-size: 2rem;
    }
  
    .academic-programs p {
      font-size: 1rem;
    }
  
    .academic-programs ul li {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .navbar .nav-links li {
      margin: 10px 0;
    }
  
    .navbar .logo {
      font-size: 20px;
    }
  
    .academics-banner h1 {
      font-size: 2rem;
    }
  
    .academics-banner p {
      font-size: 1rem;
    }
  
    .academic-programs h2 {
      font-size: 1.5rem;
    }
  
    .academic-programs p {
      font-size: 0.9rem;
    }
  
    .academic-programs ul li {
      font-size: 0.9rem;
    }
  }

  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Navigation Styles */
  .navbar {
    background: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
  }
  
  .navbar .nav-links {
    display: flex;
    list-style: none;
  }
  
  .navbar .nav-links li {
    margin: 0 10px;
  }
  
  .navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  
  .navbar .nav-links li a.active,
  .navbar .nav-links li a:hover {
    color: #ff9800;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
  
  /* Academics Banner Section */
  .academics-banner {
    height: 50vh;
    background: url('../images/academics-banner.jpg') center center/cover no-repeat; /* Update the path to your image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
  }
  
  .academics-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .academics-banner p {
    font-size: 1.5rem;
  }
  
  /* Academic Programs Section */
  .academic-programs {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .academic-programs h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .academic-programs p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
  }
  
  .academic-programs ul {
    list-style: none;
    padding: 0;
  }
  
  .academic-programs ul li {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #444;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar .nav-links {
      flex-direction: column;
      align-items: center;
      display: none;
    }
  
    .navbar .nav-links.active {
      display: flex;
    }
  
    .navbar .menu-toggle {
      display: block;
    }
  
    .academics-banner h1 {
      font-size: 2.5rem;
    }
  
    .academics-banner p {
      font-size: 1.2rem;
    }
  
    .academic-programs h2 {
      font-size: 2rem;
    }
  
    .academic-programs p {
      font-size: 1rem;
    }
  
    .academic-programs ul li {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .navbar .nav-links li {
      margin: 10px 0;
    }
  
    .navbar .logo {
      font-size: 20px;
    }
  
    .academics-banner h1 {
      font-size: 2rem;
    }
  
    .academics-banner p {
      font-size: 1rem;
    }
  
    .academic-programs h2 {
      font-size: 1.5rem;
    }
  
    .academic-programs p {
      font-size: 0.9rem;
    }
  
    .academic-programs ul li {
      font-size: 0.9rem;
    }
  }

  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Navigation Styles */
  .navbar {
    background: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
  }
  
  .navbar .nav-links {
    display: flex;
    list-style: none;
  }
  
  .navbar .nav-links li {
    margin: 0 10px;
  }
  
  .navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  
  .navbar .nav-links li a.active,
  .navbar .nav-links li a:hover {
    color: #ff9800;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
  
  /* Contact Banner Section */
  .contact-banner {
    height: 50vh;
    background: url('../images/contact-banner.jpg') center center/cover no-repeat; /* Update the path to your image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
  }
  
  .contact-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .contact-banner p {
    font-size: 1.5rem;
  }
  
  /* Contact Form Section */
  .contact-form {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .contact-form h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .contact-form form {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-form label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #555;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
  }
  
  .contact-form button {
    padding: 10px 20px;
    background: #ff9800;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-form button:hover {
    background: #e68900;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar .nav-links {
      flex-direction: column;
      align-items: center;
      display: none;
    }
  
    .navbar .nav-links.active {
      display: flex;
    }
  
    .navbar .menu-toggle {
      display: block;
    }
  
    .contact-banner h1 {
      font-size: 2.5rem;
    }
  
    .contact-banner p {
      font-size: 1.2rem;
    }
  
    .contact-form h2 {
      font-size: 2rem;
    }
  
    .contact-form label {
      font-size: 1rem;
    }
  
    .contact-form input,
    .contact-form textarea {
      font-size: 0.9rem;
    }
  
    .contact-form button {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .navbar .nav-links li {
      margin: 10px 0;
    }
  
    .navbar .logo {
      font-size: 20px;
    }
  
    .contact-banner h1 {
      font-size: 2rem;
    }
  
    .contact-banner p {
      font-size: 1rem;
    }
  
    .contact-form h2 {
      font-size: 1.5rem;
    }
  
    .contact-form label {
      font-size: 0.9rem;
    }
  
    .contact-form input,
    .contact-form textarea {
      font-size: 0.8rem;
    }
  
    .contact-form button {
      font-size: 0.9rem;
    }
  }

  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Navigation Styles */
  .navbar {
    background: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
  }
  
  .navbar .nav-links {
    display: flex;
    list-style: none;
  }
  
  .navbar .nav-links li {
    margin: 0 10px;
  }
  
  .navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  
  .navbar .nav-links li a.active,
  .navbar .nav-links li a:hover {
    color: #ff9800;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
  
  /* Events Banner Section */
  .events-banner {
    height: 50vh;
    background: url('../images/events-banner.jpg') center center/cover no-repeat; /* Update the path to your image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
  }
  
  .events-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .events-banner p {
    font-size: 1.5rem;
  }
  
  /* Events List Section */
  .events-list {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .events-list h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .events-list ul {
    list-style: none;
    padding: 0;
  }
  
  .events-list ul li {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #444;
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
  
  .events-list ul li strong {
    color: #ff9800;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar .nav-links {
      flex-direction: column;
      align-items: center;
      display: none;
    }
  
    .navbar .nav-links.active {
      display: flex;
    }
  
    .navbar .menu-toggle {
      display: block;
    }
  
    .events-banner h1 {
      font-size: 2.5rem;
    }
  
    .events-banner p {
      font-size: 1.2rem;
    }
  
    .events-list h2 {
      font-size: 2rem;
    }
  
    .events-list ul li {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .navbar .nav-links li {
      margin: 10px 0;
    }
  
    .navbar .logo {
      font-size: 20px;
    }
  
    .events-banner h1 {
      font-size: 2rem;
    }
  
    .events-banner p {
      font-size: 1rem;
    }
  
    .events-list h2 {
      font-size: 1.5rem;
    }
  
    .events-list ul li {
      font-size: 0.9rem;
    }
  }

  /* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body and Background */
  body {
    font-family: 'Arial', sans-serif;
    background: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Navigation Styles */
  .navbar {
    background: #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    color: white;
    font-size: 24px;
    font-weight: bold;
  }
  
  .navbar .nav-links {
    display: flex;
    list-style: none;
  }
  
  .navbar .nav-links li {
    margin: 0 10px;
  }
  
  .navbar .nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  
  .navbar .nav-links li a.active,
  .navbar .nav-links li a:hover {
    color: #ff9800;
  }
  
  .menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
  }
  
  /* Facilities Banner Section */
  .facilities-banner {
    height: 50vh;
    background: url('../images/facilities-banner.jpg') center center/cover no-repeat; /* Update the path to your image */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
  }
  
  .facilities-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .facilities-banner p {
    font-size: 1.5rem;
  }
  
  /* Facilities List Section */
  .facilities-list {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
  }
  
  .facilities-list h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .facilities-list ul {
    list-style: none;
    padding: 0;
  }
  
  .facilities-list ul li {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #444;
    padding: 10px;
    border-bottom: 1px solid #eee;
  }
  
  .facilities-list ul li strong {
    color: #ff9800;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
  }
  
  footer p {
    margin: 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar .nav-links {
      flex-direction: column;
      align-items: center;
      display: none;
    }
  
    .navbar .nav-links.active {
      display: flex;
    }
  
    .navbar .menu-toggle {
      display: block;
    }
  
    .facilities-banner h1 {
      font-size: 2.5rem;
    }
  
    .facilities-banner p {
      font-size: 1.2rem;
    }
  
    .facilities-list h2 {
      font-size: 2rem;
    }
  
    .facilities-list ul li {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .navbar .nav-links li {
      margin: 10px 0;
    }
  
    .navbar .logo {
      font-size: 20px;
    }
  
    .facilities-banner h1 {
      font-size: 2rem;
    }
  
    .facilities-banner p {
      font-size: 1rem;
    }
  
    .facilities-list h2 {
      font-size: 1.5rem;
    }
  
    .facilities-list ul li {
      font-size: 0.9rem;
    }
  }
  