<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* HERO SECTION */

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero p {
  font-size: 1.25rem;
}


/* HERO SECTION with Background Video */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  /* Retain your gradient if you wish */
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Adjust the video to sit above the hero background */
.hero .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;  /* Changed from -1 to 0 */
}

/* Ensure your content is above the video */
.hero .container {
  position: relative;
  z-index: 1;
}

/* NAVBAR */
.navbar-brand {
  font-size: 1.5rem;
}
.nav-link {
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #0056b3;
}

/* SECTION SPACING */
section {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* CARDS (Features) */
.card {
  border-radius: 12px;
}

/* ACCORDION (FAQ) */
.accordion-button {
  background-color: #f8f9fa;
  font-weight: 600;
}
.accordion-button:not(.collapsed) {
  color: #007bff;
  background-color: #e2f0ff;
}

/* FOOTER */
footer {
  font-size: 0.9rem;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
}

h2{
	font-weight: bold;
	margin-top:40px;
}

a{
	text-decoration: none;
}
</pre></body></html>