.about-head1 {
  text-align: center;
  padding: 20px;
  text-align: left;
  margin-top: 6rem;
}

.image-section {
  width: 100%;
  margin: 0 auto;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  padding: 20px;  position: relative;
}

.image-text-overlay {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 90%;
}

.image-overlay-text {
  font-family: "Tomorrow", sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 400;

}

.image-banner {
  width: 100%;
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  border-radius: 20px;
}

/* Content Sections with Images */
.content-section {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-section.reversed {
  flex-direction: row-reverse;
}

.image-box {
  flex: 1;
  min-width: 0;
}

.image-box img {
  width: 70%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  display: block;
}

.image-box2 {
  flex: 1;
  min-width: 0;
}

.image-box2 img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  display: block;
}

.content-text {
  flex: 1;
  min-width: 0;
}

.content-text h3 {
  font-family: "Tomorrow", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #00aeff;
  margin-bottom: 20px;
}

.content-text p {
  font-family: "Space Mono", monospace;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 15px;
}

@media (max-width: 480px) {
  .image-section {
    width: 100%;
    }  
    .image-banner {
        border-radius: 5px;
    }
    .image-text-overlay {
        top: 65%;
    }
    .image-overlay-text {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
  .content-section {
    flex-direction: column;
    gap: 30px;
    padding: 40px 20px;
  }

  .content-section.reversed {
    flex-direction: column;
  }

  .image-box {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .image-box2 {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .content-text h3 {
    font-size: 1.5rem;
  }

  .content-text p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .content-section {
    padding: 30px 15px;
    gap: 20px;
  }

  .image-box {
    display: flex;
    justify-content: center;
  }

  .image-box2 {
    display: flex;
    justify-content: center;
  }

  .content-text h3 {
    font-size: 1.3rem;
  }

  .content-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}