/* global */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

h1, h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  color: #141f6e;
}

.btn-primary {
  display: inline-block;
  background: #fec513;
  color: #000;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
}

/* blue section */
.section-hero-blue,
.section-testimonial-blue {
  background: #141f6e;
  color: #ffffff;
  padding: 80px 0;
}

.section-hero-blue h1,
.section-testimonial-blue h2 {
  color: #ffffff;
}

/* hero*/
.hero-heading {
  font-size: 48px;
}

.hero-text {
  max-width: 700px;
  margin: 20px auto;
  font-size: 15px;
}

/* feature section */
.section-features-white {
  padding: 80px 0;
}

.section-intro {
  font-weight: 600;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-text {
  font-size: 14px;
  line-height: 1.6;
}

/* testimonial */
.section-subtitle {
  color: #fec513;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-heading {
  font-size: 42px;
}

.testimonial-text {
  max-width: 800px;
  margin: 30px auto 0;
  font-size: 14px;
  line-height: 1.8;
}

/* learn section */
.section-learn-white {
  padding: 80px 0;
}

.learn-label {
  color: #fec513;
  font-weight: 700;
}

.learn-heading {
  font-size: 44px;
  margin: 20px 0;
}

.learn-text {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 14px;
}

/* form section */
.section-form-white {
  padding: 80px 0;
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.signup-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.signup-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.form-checkbox {
  display: flex;
  gap: 10px;
  font-size: 12px;
  margin-bottom: 20px;
  text-align: left;
}

.full-width {
  width: 100%;
}


/* Responsive/* 

/* Tablet */

@media (max-width: 900px) {

  .hero-heading {
    font-size: 40px;
  }

  .section-heading {
    font-size: 36px;
  }

  .learn-heading {
    font-size: 38px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .form-layout {
    gap: 40px;
  }
}

/* Phone */
@media (max-width: 600px) {

  .container {
    width: 92%;
  }

  /* Headings */
  .hero-heading {
    font-size: 32px; 
  }

  .section-heading {
    font-size: 30px;
  }

  .learn-heading {
    font-size: 32px;
  }

  /* Text spacing */
  .hero-text,
  .testimonial-text,
  .learn-text {
    font-size: 14px;
  }

  /* features stack vertically */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* FORM SECTION: stack */
  .form-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .signup-form {
    padding: 30px 20px;
  }

  .btn-primary {
    padding: 12px 24px;
  }
}

header.header {
    background: #0d1e74;
    padding: 1rem 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

header.header .logo {
    height: 50px;
}

header.header .nav .btn-primary {
    background: #fec513;
    color: #000;
    font-weight: 700;
    margin-top: 0;
}

section.section-hero-blue.thankyou {
    height: 42vh;
    display: flex;
    align-items: center;
}

@media (max-width: 900px) {
    
}

/* Phone */
@media (max-width: 600px) {
     section.section-hero-blue.thankyou {
        height: 42vh;
      }
}


footer.footer {
    background: #0d1e74;
    color: #ffff;
    font-weight: 500;
    padding: 2rem 0;
}

footer.footer a {
    color: #bd1c1e;
    text-decoration: none;
    font-weight: 700;
}