/* Base Styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #2D6BCF;
  color: white;
  overflow-x: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
.nav {
  width: 100%;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 40px;
}

/* CTA Buttons */
.cta {
  background-color: white;
  color: #2D6BCF;
  padding: 10px 20px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta.large {
  padding: 14px 28px;
  font-size: 16px;
  margin-top: 24px;
}

.cta:hover {
  transform: scale(1.05);
}

/* Inverted Button (for white header and bottom) */
.cta.inverted {
  background-color: #2D6BCF;
  color: white;
}

.cta.inverted:hover {
  background-color: #1c54a5;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px 80px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.subheadline {
  font-size: 20px;
  max-width: 640px;
  margin: 0 auto 30px;
}

/* Features Section */
.features {
  background-color: #1F4EA2;
  padding: 40px 30px 60px;
  border-radius: 16px;
  margin: 60px auto;
}

.features h2 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.feature {
  background-color: #2D6BCF;
  padding: 24px;
  border-radius: 12px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature h3 {
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
}

/* CTA Below Features */
.features-cta {
  text-align: center;
  margin-top: 40px;
}

/* Footer */
footer {
  text-align: center;
  font-size: 14px;
  color: #cfd9f2;
  margin: 60px 0 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }

  .hero {
    padding: 60px 20px 40px;
  }

  .hero-title {
    font-size: 32px;
  }

  .subheadline {
    font-size: 16px;
    padding: 0 10px;
  }

  .cta.large {
    width: auto;
    padding: 12px 24px;
  }

  .feature {
    width: 100%;
  }
}

.hero {
  padding: 100px 20px; /* or adjust to 80px if needed */
}

.hero-content {
  display: flex;
  align-items: center; /* 👈 vertically centers both sides */
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.hero-video {
  flex: 1;
  min-width: 300px;
}

.hero-video iframe {
  width: 100%;
  height: 315px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.subheadline {
  font-size: 20px;
  max-width: 640px;
  margin: 0 0 30px 0;
}