    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f5f5f5;
      color: #000000;
    }

    header {
      background-color: #ffffff;
      color: rgb(0, 0, 0);
      padding: 10px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: 'Georgia', serif;
      border-bottom: 1px solid #ccc;
    }

    .header-left {
      display: flex;
      align-items: center;
    }

    .header-left img {
      height: 80px;
      margin-right: 20px;
    }

    .header-title {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .header-title .title-line {
      font-size: 18px;
      font-weight: normal;
      text-transform: uppercase;
      line-height: 1.4;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .header-right img {
      height: 22px;
      width: 22px;
      object-fit: contain;
    }

    .header-right .divider {
      height: 22px;
      width: 1px;
      background-color: #999;
    }

    nav {
      background-color: #ffffff;
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 10px 0;
      position: relative;
      border-top: 2px solid black;
      border-bottom: 2px solid black;
    }

    nav a {
      color: rgb(0, 0, 0);
      text-decoration: none;
      font-weight: bold;
      position: relative;
      font-family: 'Georgia', serif;
      text-transform: uppercase;
      font-size: 15px;
    }

    nav .dropdown {
      position: relative;
    }

    nav .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: rgb(0, 0, 0);
      padding: 10px;
      border-radius: 0 0 10px 10px;
      min-width: 160px;
      z-index: 1;
    }

    nav .dropdown-content a {
      display: block;
      color: white;
      padding: 5px 10px;
    }

    nav .dropdown:hover .dropdown-content {
      display: block;
    }

    nav .dropdown-content a:hover {
      background-color: rgba(255, 255, 255, 0.1);
    }

    main {
      max-width: 1100px;
      margin: 30px auto;
      padding: 30px;
      background-color: white;
      border-radius: 16px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
      animation: fadeInMain 1.2s ease forwards;
    }

    @keyframes fadeInMain {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    h1, h2, h3 {
      font-family: 'Georgia', serif;
      color: #002b5c;
    }

    h1 {
      font-size: 36px;
      text-align: center;
      margin-bottom: 30px;
    }

    h2 {
      margin-top: 40px;
    }

    p, li {
      font-family: 'Merriweather', serif;
      font-size: 17px;
      line-height: 1.8;
      color: #1a1a1a;
    }

    ul {
      padding-left: 20px;
    }

    .section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
      margin: 60px 0;
      animation: fadeIn 1s ease both;
    }

    .section.reverse {
      direction: rtl;
    }

    .section.reverse > * {
      direction: ltr;
    }

    .section img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
      transition: transform 0.6s ease;
    }

    .section img:hover {
      transform: scale(1.05) rotate(0.5deg);
    }

    .section .text {
      animation: slideInUp 1s ease forwards;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideInUp {
      from { transform: translateY(50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    @media (max-width: 768px) {
      .section {
        grid-template-columns: 1fr;
      }

      .section img {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
      }

      .section .text.reveal {
        width: 100%;
      }

      .section.reverse {
        grid-template-columns: 1fr;
        direction: rtl;
      }

      .section.reverse .text {
        direction: ltr;
      }
      
  header, nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }

  .header-left {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-left img {
    height: 60px;
    margin-bottom: 10px;
  }

  nav {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
  }

  .faculty-container {
    grid-template-columns: 1fr;
  }

  .faculty-content h2 {
    font-size: 20px;
  }

  .faculty-content p {
    font-size: 15px;
  }

  .faculty-content a {
    font-size: 14px;
    padding: 8px 16px;
  }
}