body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
  }

  /* Header */
  .header {
    background-color: #000066;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 20px;
  }

  .header img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }

  .header h1 {
    margin: 0;
    font-size: 20px;
  }

  .header h2 {
    margin: 0;
    font-size: 16px;
    color: gold;
  }

  /* Navigation */
  .navbar {
    background-color: #990000;
    text-align: center;
    padding: 10px 0;
  }

  .navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-size: 14px;
  }

  .navbar a:hover {
    background-color: #cc0000;
  }

  /* Title Section */
  .page-title {
    text-align: center;
    color: #990000;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 10px;
  }

  .intro-text {
    text-align: center;
    font-size: 15px;
    background-color: #f2f2ff;
    padding: 10px 20px;
  }

  /* Main Section */
  .main-content {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
  }

  .section-title {
    text-align: center;
    font-size: 28px;
    color: #000080;
    margin: 20px 0;
  }

  .contact-box {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
  }

  .contact-info {
    flex: 1;
    font-size: 20px;
  }

  .contact-info strong {
    font-size: 16px;
    color: #000066;
  }

  .contact-photo {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
  }

  /* Location Section */
  .location-section {
    text-align: center;
    font-size: 20px;
    margin-top: 40px;
  }

  .location-section h3 {
    color: #2e047a;
  }

  .location-img {
    margin-top: 10px;
  }

  .location-img img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
  }

  /* Footer */
  .footer {
    text-align: center;
    padding: 15px;
    font-size: 13px;
    background-color: #f9f9f9;
    color: #555;
    margin-top: 30px;
  }