body {
      font-family: 'Segoe UI', sans-serif;
      background: #f1f4f9;
      margin: 0px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

* {
  box-sizing: border-box;
}
    /*HERO*/

    .hero-section {
      width: 100%;
      height: 360px;
      background-image: url('./images/announcement.jpg'); /* replace with your image */
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);

    }

    .hero-overlay {
      background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
    }

    .hero-content {
      max-width: 700px;
      color: white;
      text-align: center; /* <-- center the text */
    }

    .hero-title {
      font-size: 44px;
      font-weight: bold;
      margin-top: -20px;
    }

    .hero-desc {
      font-size: 20px;
      line-height: 1.5;
      max-width: 700px;
    }

    /* MOBILE VIEW */
    @media (max-width: 768px) {
      .hero-overlay {
        padding: 0 20px;
        text-align: center;
      }

      .hero-content {
        text-align: center;
      }

      .hero-title {
        font-size: 36px;
      }

      .hero-desc {
        font-size: 16px;
      }
    }

    
.announcements-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
  }

  .announcements-section .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
  }

  .announcement-card {
    background: #f9f9f9;
    border-left: 5px solid #4564dc;
    padding: 20px 25px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    width: 800px
  }

  .announcement-card h4 {
    font-size: 20px;
    color: #00307c;;
    margin-bottom: 8px;
  }

  .announcement-date {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 12px;
  }

  .announcement-card ul {
    padding-left: 20px;
    margin-bottom: 15px;
  }

  .announcement-card ul li {
    margin-bottom: 5px;
    font-size: 16px;
    color: #444;
  }

  .announcement-card .note {
    font-size: 15px;
    color: #666;
    margin-bottom: 5px;
  }

  .announcement-card a {
    color: #00307c;
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    .announcements-section {
      padding: 40px 15px;
    }

    .announcement-card {
      padding: 18px;
      width: 100%;
    }

    .announcement-card h4 {
      font-size: 18px;
    }

    .announcement-card ul li,
    .announcement-card .note {
      font-size: 15px;
    }
  }