* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.active-link {
  color: #FF5A1F;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0A1433;
  color: #fff;
  line-height: 1.6;
}


.light-section {
  background-color: #f2f2f2;
  color: #000;
}

a {
  color: #fff;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


header {
  background-color: #0A1433;
  padding: 20px 0;
  padding-top: 50px;
  position: relative;
}

.containernav {
margin-right: 50px;
margin-top: 25px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  flex: 1 auto;
  font-weight: bold;
  font-size: 22px;
  line-height: 1.2;
}

.logo span {
  color: #FF5A1F;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 16px;
}

.btn 
.btn2 {
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
  display: inline-block;
}

.orange {
  background-color: #FF5A1F;
  color: white;
}

.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.burger span {
  height: 3px;
  width: 25px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.hero {
  padding: 60px 0;
}

.hero-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 40px; */
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 500px;
  text-align: left;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.hero-image {
  flex: 1 1 400px;
}

.hero-image img {
  width: 120%;
  border-radius: 10px;
}

.stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
  text-align: center;
  gap: 20px;
}

.stats div {
  flex: 1 1 calc(25% - 20px);
  min-width: 140px;
}

.stats div h2 {
  font-size: 36px;
}


.why-us h2,
.how-it-works h2,
.next-steps h2,
.cta h2,
.contact h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
}

.feature {
  flex: 1 1 calc(25% - 20px);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.support .container,
.next-steps .container,
.cta .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}

.support-text,
.support-image,
.cta img,
.next-steps img {
  flex: 1 1 48%;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.video {
  flex: 1 1 45%;
  text-align: center;
}

.video img {
  width: 100%;
  border-radius: 10px;
}

.next-steps ul {
  text-align: left;
  margin-bottom: 20px;
}

.next-steps li {
  margin: 10px 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

input, button {
  padding: 12px;
  border: none;
  border-radius: 5px;
}

button.btn.orange {
  cursor: pointer;
  font-weight: bold;
}

footer {
  background-color: #0A1433;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.social a {
  margin: 0 10px;
  font-size: 18px;
  color: #fff;
}

.copyright {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.section {
  padding: 80px;
}
.herotext{
 align-content: end;
}
.containerherotext {
display: flex;
justify-content: space-between;
}

@media (max-width: 1024px) {
  .stats div, .feature, .video {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  
  .hero-text h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .containerherotext {
    margin-top:10px;
    flex-wrap: wrap;
    justify-content: space-between;
    }

  .herotext{
    text-align: center;
    align-content:center;
  }

  .containerform{
    flex-wrap: wrap;
  }
  .section {
    padding: 20px;
  }
  .hero-grid,
  .features,
  .stats,
  .video-grid,
  .support .container,
  .next-steps .container,
  .cta .container,
  .footer-content {
    /* flex-direction: column; */
    text-align: center;
  }
  .hero-image img {
    margin-top: 20px;
    width: 100%;
  }

  .phonenav {
    display: none;
  }

  .hero-text,
  .hero-image,
  .support-text,
  .support-image,
  .cta img,
  .next-steps img {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .feature,
  .stats div,
  .video {
    flex: 1 1 100%;
  }

  nav ul {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-nav.active {
    display: flex;
  }
}