:root {
  --primary: #0248FD;
  --text: #1f1f1f;
  --bg: #FFFFFF;
  --light: #ffffff;
  --accent: #eaeaea;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face{
  font-family: 'Manrope';
  src: url('../fonts/manrope.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body, button, input, select, textarea {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.navbar {
  background: #001d4a;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ffffff;
}

.navbar .logo {
  font-weight: bold;
  font-size: 1.2rem;
  height: 40.91px;
  width: 98.32px;
}

.take-test {
  background: var(--light);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  border: 1px solid #ffffff;
  background-color: #0248FD;
  font-weight: 700;
  font-size: 16px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 0rem 0rem 2rem;
  background: #F4F4F4;
  height: 630px;
  margin-bottom: -30px;
  overflow: hidden;
}

.hero-text {
  flex: 1;
  padding-right: 2rem;
  width: 344px;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 56px;
  line-height: 120%;
}

.hero-text p {
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-style: regular;
  font-size: 18px;
  line-height: 150%;
}

.btn {
  background: var(--primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 1px;
  font-weight: 600;
  display: inline-block;
  width: 100%;
  font-size: 30px;
}

.btn-footer {
  background: var(--primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 1px;
  font-weight: 400;
  font-size: 25px;
  font-style: regular;
}

.btn:hover {
  background: #003bbd;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}

.testimonials {
  padding: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: space-around;
  background: var(--accent);
  flex-wrap: wrap;
}

.testimonial {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.why-readiness {
  display: flex;
  flex-wrap: wrap;
  padding: 70px 75px;
  gap: 2rem;
}

.why-readiness .image,
.why-readiness .text {
  flex: 1;
  min-width: 300px;
}

.why-readiness img {
  width: 100%;
}

.cta {
  text-align: center;
  padding: 3rem 2rem;
  background: #ACD2E7;
}

.cta h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-style: bold;
  font-size: 40px;
  line-height: 120%;
}

.cta p {
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-style: regular;
  font-size: 18px;
  line-height: 150%;
}

.main-footer {
  background-color: #F9FBFC;
}

.footer-top {
  text-align: center;
  padding: 40px 20px;
}

.footer-text {
  font-size: 16px;
  margin-bottom: 30px;
  color: #0A2540;
}

.logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.logos img {
  max-height: 25px;
  object-fit: contain;
}

.footer-bottom {
  background-color: #002144;
  color: #ffffff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-links a {
  color: #ffffff;
  margin-left: 20px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.white-section.left-align {
    justify-content: flex-start;
    align-items: flex-start;
}

.white-section {
    text-align: left;
    flex-flow: column;
    justify-content: flex-start;
    align-items: left;
    padding: 100px 10%;
    display: flex;
    overflow: hidden;
}

.privacy-policy {
    max-width: 1024px;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }

  .why-readiness {
    flex-direction: column;
  }

  .navbar {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn {
    font-size: 1rem;
  }
}