body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
  }

  /* Top Header */
  .header {
    background-color: #000066;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }

  .header img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }

  .header-title {
    text-align: center;
  }

  .header-title h1 {
    margin: 0;
    font-size: 24px;
  }

  .header-title h2 {
    margin: 0;
    font-size: 18px;
    color: gold;
  }

  /* Navigation */
  .navbar {
    background-color: #990000;
    text-align: center;
    padding: 10px 0;
  }

  .navbar a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    font-size: 14px;
  }

  .navbar a:hover {
    background-color: #cc0000;
  }

  /* Page Title */
  .page-title {
    text-align: center;
    color: #990000;
    font-weight: bold;
    font-size: 28px;
    margin-top: 20px;
  }

  /* Main Content */
  .main-content {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
  }

  .intro {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 20px;
  }

  .intro img {
    width: 300px;
    border-radius: 8px;
  }

  .intro-text {
    flex: 1;
    font-size: 20px;
    line-height: 1.6;
    text-align: justify;
  }

  .cardinal-caption {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
  }

  .content-paragraphs p {
    font-size: 20px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 15px;
  }

  /* Bottom Image */
  .campus-img {
    text-align: center;
    margin-top: 30px;
  }

  .campus-img img {
    width: 100%;
    max-width: 1000px;
    border-radius: 10px;
  }

  .footer {
    text-align: center;
    padding: 15px;
    font-size: 13px;
    color: #444;
    margin-top: 40px;
    background-color: #f9f9f9;
  }