body {
  font-family: Montserrat;
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #303133 0%, #47484a 100%);
}
section {
  scroll-margin-top: 60px; /* Adjust this value as needed */
}
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire area */
  transform: translate(-50%, -50%);
}

.terms-container {
  border: 2px solid;
  border-image: linear-gradient(to right, rgba(45, 255, 204, 0.5), #02797f) 1;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  width: 85%;
  margin: 0 auto;
  padding: 20px;
  color: white;
  box-sizing: border-box;
  border-radius: 50px;
  margin-top: 4rem;
}

.terms-section {
  padding: 25px 0;
  border-bottom: 2px solid #00c7d2;
}

.terms-section:last-child {
  border-bottom: none;
}

.terms-section h2 {
  margin-top: 0;
  font-size: 1.4rem;
  color: white;
  text-align: center;
}

.terms-section p {
  margin: 5px 0;
  line-height: 1.6;
}

.terms-section p:last-of-type {
  margin-bottom: 0;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  margin: 20px;
  background: linear-gradient(267.04deg, #00936f 9.15%, #00c7d2 88.71%);
  color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 82%;
  margin: 0 auto;
  margin-top: 4rem;
}

.contact-info-section h2 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.contact-info-section p {
  margin-bottom: 15px;
  font-size: 1rem;
}

.contact-button {
  background: linear-gradient(90deg, #00c7d2 0%, #00936f 100%);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}
.contact-info-section a {
  text-decoration: none;
}

.contact-button:hover {
  background-color: #feb47b;
}

/* Hero Section Styling */
.hero {
  height: 65vh;

  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  color: white;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto; /* Center content horizontally */
}

.hero h1 {
  font-size: 2.2rem;
  margin: 0;
}

.hero h1 .highlight {
  color: #00e8aa;
}

.hero p {
  font-size: 1.2rem;
  margin: 20px 0;
}

.hero h2 {
  font-size: 1.5rem;
  margin: 20px 0;
}

.btn-watch-now {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg, rgba(45, 255, 204, 0.5) 0%, #00c7d2 100%);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-watch-now:hover {
  background-color: #00c7d2;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  .hero {
    height: auto; /* Adjust the height for mobile view */
    padding: 40px; /* Add padding for mobile view */
    flex-direction: column; /* Stack content vertically */
  }

  .hero-content {
    max-width: 100%; /* Full width for mobile view */
    margin: 0; /* Remove horizontal margin */
    padding: 0 10px; /* Add some padding on mobile */
  }

  .hero h1 {
    font-size: 1.8rem; /* Adjust font size for mobile view */
  }

  .hero p {
    font-size: 1rem; /* Adjust font size for mobile view */
    margin: 15px 0; /* Adjust margin for mobile view */
  }

  .btn-watch-now {
    padding: 8px 16px; /* Adjust padding for mobile view */
    font-size: 0.9rem; /* Adjust font size for mobile view */
  }
}
