body{
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  

}
a{
  text-decoration: none;
  color: white;
}


    /* Container */
   
    .history-container {
      max-width: 900px;
      margin: 30px auto;
      padding: 20px;
      font-family: 'Readex Pro', sans-serif;
    }

    /* Section title */
    .section-title {
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 30px;
      text-align: center;
      color: #111;
      border-bottom: 2px solid #111;
      display: inline-block;
      padding-bottom: 5px;
    }

    /* Each history block */
    .history-item {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    /* Reverse layout for alternating images */
    .history-item.reverse {
      flex-direction: row-reverse;
    }

    /* Text styling */
    .history-text {
      flex: 1 1 400px;
    }

    /* Image styling */
    .history-image {
      flex: 1 1 300px;
    }
    .history-image img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
    }

    /* Headings inside history */
    .history-text h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: #111;
    }

    .history-text p {
      font-size: 1rem;
      line-height: 1.7;
      color: #333;
      text-align: justify;
    }

    /* Mobile: stack text above image */
    @media screen and (max-width: 768px) {
      .history-item,
      .history-item.reverse {
        flex-direction: column;
        text-align: center;
      }
      .history-image {
        margin-top: 15px;
      }
      .history-text {
        flex: 1 1 100%;
      }
    }
