.video-section {
  position: relative;
  width: 100%;
  height: 60vh;
  overflow: hidden;
}

.video-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.video-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.video-overlay p {
  font-size: 1.2rem;
}
.gallery-section h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #444;
  font-weight: 500;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}
