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/topik-past-papers-bg.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: linear-gradient(to right, rgba(0, 48, 124, 0.6), rgba(128, 0, 128, 0.6));
      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;
      }
    }

.topik-papers-section {
    max-width: 1000px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
  }

  .topik-papers-section h2 {
    color: #00307c;
    margin-bottom: 20px;
  }

  .topik-papers-section ul {
    padding-left: 20px;
  }

  .topik-papers-section li {
    margin-bottom: 6px;
    line-height: 1.6;
    color: #00307c;
  }

  .topik-papers-section a {
    color: #00307c;
    text-decoration: none;
    font-weight: 500;
  }

  .topik-papers-section a:hover {
    color: #f05454;
  }

  .topik-paper-simple-list {
    margin-top: 24px;
  }