.about_hero {
  min-height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  padding-top: 120px;
  padding-left: 7%;
  padding-right: 0;
  padding-bottom: 0;

  box-sizing: border-box;
  overflow: hidden;
  gap: 0;
}

.about_hero_text {
  width: 45%;
  flex: 0 0 45%;
  padding-right: 5%;
  align-self: center;
}

.about_hero_image {
  width: 55%;
  flex: 0 0 55%;
}

.about_hero_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about_small {
  color: rgb(33, 211, 10);
  font-weight: 800;
  letter-spacing: 2px;
}

.about_hero_text h1 {
  font-size: clamp(54px, 7vw, 110px);
  line-height: 1.05;
  margin: 20px 0 35px;
}

.about_hero_text p {
  font-size: 32px;
  line-height: 1.7;
}
.about_points {
  padding: 120px 7%;
  background:
    linear-gradient(135deg, #f4fff4 0%, #ffffff 45%, #eef9ef 100%);
}

.point_card {
  max-width: 1250px;
  margin: 0 auto 45px;
  padding: 45px 55px;

  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.82);

  border-left: 8px solid rgb(33, 211, 10);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 0 55px rgba(33, 211, 10, 0.12);
}

.point_card:last-child {
  margin-bottom: 0;
}

.point_card h3 {
  font-size: 42px;
  margin: 0 0 18px;
  color: #111;
}

.point_card p {
  font-size: 28px;
  line-height: 1.7;
  margin: 0;
  color: #222;
}

.about_events {
  padding: 130px 7%;
  background-color: white;
}

.about_events_intro {
  max-width: 1300px;
  margin-bottom: 75px;
}

.about_events_intro h2 {
  font-size: clamp(46px, 5vw, 88px);
  line-height: 1.08;
  margin: 20px 0;
}

.event_feature {
  display: flex;
  align-items: flex-start;
  gap: 70px;
}

.event_text {
  width: 55%;
}

.event_date {
  display: inline-block;
  margin-bottom: 24px;
  background-color: rgb(33, 211, 10);
  color: white;
  padding: 12px 22px;
  font-size: 22px;
  font-weight: 800;
}

.event_text h3 {
  font-size: clamp(40px, 4vw, 66px);
  line-height: 1.1;
  margin: 0 0 35px;
}

.event_text p {
  font-size: 27px;
  line-height: 1.75;
  text-align: justify;
  margin-bottom: 28px;
}

.event_gallery {
  width: 45%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: sticky;
  top: 120px;
}

.event_gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.35s ease;
}

.event_gallery img:hover {
  transform: scale(1.04);
}

.event_lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.88);
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.event_lightbox.active {
  display: flex;
}

.event_lightbox_img {
  max-width: 92%;
  max-height: 88vh;
  object-fit: contain;
}

@media (max-width: 900px) {
  .about_events {
    padding: 85px 6%;
  }

  .event_feature {
    flex-direction: column;
  }

  .event_text,
  .event_gallery {
    width: 100%;
  }

  .event_gallery {
    position: static;
    grid-template-columns: 1fr;
  }

  .event_gallery img {
    height: 260px;
  }

  .event_text p {
    font-size: 20px;
    text-align: left;
  }
}



.about_collaboration {
  padding: 130px 7%;
  background-color: #f7f9f7;
  display: flex;
  align-items: center;
  gap: 70px;
  text-align: left;
}

.about_side_text {
  width: 50%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.about_map {
  width: 50%;
}

.about_map iframe {
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
  border-radius: 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
}

.about_contact_details {
  margin-top: 40px;
  padding-left: 26px;
  border-left: 6px solid rgb(33, 211, 10);
}

.about_contact_details p {
  font-size: 24px;
  line-height: 1.7;
}

.about_contact_details a {
  color: rgb(33, 211, 10);
  font-weight: 800;
  text-decoration: none;
}

.about_side_text h2 {
  font-size: clamp(46px, 5vw, 84px);
  line-height: 1.08;
  margin: 20px 0;
}

.about_side_text p {
  font-size: 28px;
  line-height: 1.75;
}

.about_button {
  display: inline-block;
  margin-top: 35px;
  background-color: rgb(33, 211, 10);
  color: white;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 28px;
  font-weight: 800;
}

.about_footer_image img {
  width: 100%;
  height: 840px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .about_collaboration {
    flex-direction: column;
  }

  .about_side_image,
  .about_side_text {
    width: 100%;
  }

  .about_side_image {
    height: 460px;
  }

  .about_hero_text p,
  .about_side_text p,
  .point_card p {
    font-size: 21px;
  }
.point_card {
  margin: 0 0 28px;
  max-width: 100%;
  padding: 30px;
}

.point_card h3 {
  font-size: 30px;
}

.point_card p {
  font-size: 21px;
}

  .about_footer_image img {
    height: 420px;
  }
  .about_map {
  width: 100%;
}

.about_map iframe {
  height: 360px;
}
}
