.about-section {
  padding: 20px;
  text-align: center;
}

.about-section h2 {
  font-size: 22px;
  font-weight: bold;
  color: #c71585;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Always 3 columns */
  grid-template-rows: repeat(2, 200px);
  /* Always 2 rows */
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
}

.about-image img:hover {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 12px;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


.about-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.about-left,
.about-right {
  flex: 1 1 45%;
  min-width: 300px;
}

.about-left h2,
.about-right h2,
.about-left h3,
.map {
  color: #c71585;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-left p,
.about-right p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.map-container {
  width: 100%;
  margin: 20px auto;
  max-width: 1100px;
}

.map-container h3 {
  color: #c71585;
}


.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  border-radius: 15px;
  display: block;
}

@media (max-width: 1024px) {
  a,
  h2,
  h3 {
    font-size: 2rem;
  }

  .about-image {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }

  .about-details {
    flex-direction: column;
  }

  .about-details p {
    font-size: 2rem;
  }

  .about-left,
  .about-right {
    flex: 1 1 100%;
  }

}