.ven {
  /* padding-top: 90px;
    padding-left: 100px; */
  width: 100vw;
  margin-top: 120px;
}

.venue-container {
  width: 90%;
  margin: 30px auto;
  text-align: center;
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #ddd;
}

.venue-details {
  margin-bottom: 20px;
}

.venue-details h2 {
  font-size: 24px;
  font-weight: bold;
  color: #008000;
}

.venue-details h3 {
  font-size: 20px;
  font-weight: bold;
  color: #008000;
}

.venue-details p {
  font-size: 18px;
  color: #008000;
}

.venue-map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.venue-map iframe {
  border: 0;
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .venue-container {
    width: 90%;
    padding: 15px;
  }

  .venue-details h2 {
    font-size: 20px;
  }

  .venue-details h3 {
    font-size: 18px;
  }

  .venue-details p {
    font-size: 16px;
  }

  .venue-map {
    height: 300px;
  }
}
