/* Add custom CSS styles below */ 
.promo-video-section {
  position: relative;
  width: 100%;
  height: 450px; 
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-video-section .promo-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.promo-video-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  z-index: 2;
}

.promo-video-section .promo-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.promo-video-section .promo-content h2 {
    font-size: 34px;
    margin-bottom: 35px;
    font-weight: 700;
}

.promo-video-section .promo-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.promo-video-section .promo-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.promo-video-section .promo-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #2f4e3e;
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.promo-video-section .promo-btn:hover {
  background: #e65c00;
}
.promo-video-section {
    position: relative;
    /* padding-top: 30px; */
    width: 100%;
    height: 450px;
    margin-top: 50px;
    margin-bottom: 50px;
    overflow: hidden;
    display: flex
;
    align-items: center;
    justify-content: center;
}
.promo-video-section .promo-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #d9ead7;
    color: #2f4e3e;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 30px;
    transition: background 0.3s 
ease;
}