.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 */
.lightbox {
  display: none; /* hidden by default */
  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;       /* add margin top/bottom, center horizontally */
  max-width: 1100px;       /* optional: keeps it from stretching too wide on big screens */
}

.map-container iframe {
  width: 100%;             /* use all horizontal space */
  height: 450px;           /* fixed height (adjust if needed) */
  border: 0;
  border-radius: 15px;
  display: block;
}
