/**************MAIN CONTENT CSS START**********/
 .intro, .second-section {
    position: relative;
    height: 140vh;
    margin-top: 70px;
  }
  
  .intro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .second-section img {
    width: 100%;
    height: 75%;
    object-fit: cover;
  }
  .intro h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 25px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
  }
  .intro p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 75px;
    text-align: center;
    margin-top: 50px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  }
  .second-section h2 {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2em;
    text-align: center;
    width: 80%; /* Adjust width as needed */
  }
  
  .white-text {
    color: white;
  }
  
  .main-content {
    background-color: white;
    padding: 20px;
  }
  
  .section1, .section2, .section3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  
  .section1 img, .section2 img, .section3 img {
    width: 35%;
    height: auto;
    object-fit: cover;
    margin-left: 50px;
    margin-right: 50px;
  }
  
  .section1 .text-right, .section2 .text-left, .section3 .text-right {
    width: 45%;
  }
  
  .section1 h3, .section2 h3, .section3 h3 {
    margin-top: 0;
    text-align: center;
    font-size: 50px;
    font-family: 'Courier New', Courier, monospace;
  }
  .section1 p, .section2 p, .section3 p {
    font-family: 'Times New Roman', Times, serif;
    margin-right: 25px;
    margin-left: 25px;
    text-align: justify;
  }
  @media (max-width: 1024px) {
    .section1, .section2, .section3 {
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
  
    .section1 img, .section2 img, .section3 img {
      width: 80%;
      margin: 20px 0;
    }
  
    .section1 .text-right, .section2 .text-left, .section3 .text-right {
      width: 90%;
      margin: 0;
    }
  
    .section1 h3, .section2 h3, .section3 h3 {
      font-size: 36px;
    }
  }
  
  @media (max-width: 768px) {
    .intro h1, .second-section h2 {
      font-size: 20px;
    }
  
    .section1 img, .section2 img, .section3 img {
      width: 100%;
    }
  
    .section1 p, .section2 p, .section3 p {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .intro h1, .second-section h2 {
      font-size: 18px;
    }
  
    .section1 img, .section2 img, .section3 img {
      width: 100%;
      margin: 10px 0;
    }
  
    .section1 h3, .section2 h3, .section3 h3 {
      font-size: 24px;
    }
  
    .section1 p, .section2 p, .section3 p {
      font-size: 12px;
      margin: 10px;
    }
  }