body {
  font-family: "Montserrat", sans-serif;
}

.header .nav__link {
  color: var(--color-white);
}

/* =========================================================
   HERO CERTIFICATIONS
========================================================= */
.cert-hero {
  position: relative;
  height: 110vh;
  overflow: hidden;
}

.cert-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.cert-hero__bgimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cert-hero__container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 300px;
  height: 100%;
}

.cert-hero__img {
  max-width: 900px;
  width: 100%;
}

/* =========================================================
   BADGE
========================================================= */
.badge--green {
  display: inline-flex;
  background-color: var(--color-green);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 20px;
  margin-top: 32px;
  margin-bottom: 40px;
}

/* =========================================================
   SECTION NOS CERTIFICATIONS
========================================================= */
.certs {
  padding: 80px 0;
}

.certs__container {
  text-align: center;
}

.certs__eyebrow {
  color: var(--color-green);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.certs__title {
  font-size: 50px;
  font-weight: 100;
  color: var(--color-dark-purple);
  margin-bottom: 20px;
}

.certs__text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: #2f2f30;
  line-height: 1.8;
}

.certs__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  text-align: left;
}

.certs__card {
  border: 1px solid #ececef;
  border-radius: 12px;
  padding: 40px 32px;
  transition: box-shadow var(--transition);
}

.certs__card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.certs__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.certs__card-title {
  font-size: 30px;
  font-weight: 100;
  color: var(--color-dark-purple);
  margin-bottom: 8px;
}

.certs__tag {
  background-color: #f3f2f6;
  color: var(--color-dark-purple);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 20px;
  flex-shrink: 0;
  white-space: nowrap;
}

.certs__card-text {
  font-size: 14px;
  color: #2f2f30;
  margin-bottom: 20px;
  max-width: 600px;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 992px) {
  .cert-hero {
    height: 60vh;
  }

  .cert-hero__container {
    padding: 80px 200px;
    height: 100%;
  }

  .certs__text {
    max-width: 600px;
  }

  .certs__container {
    padding: 0 40px;
  }

  .faq .container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .cert-hero__container {
    padding: 50px 80px;
    height: 100%;
  }

  .certs__title {
    font-size: 32px;
  }

  .certs__text {
    font-size: 15px;
  }

  .certs__container {
    padding: 0 24px;
  }

  .faq .container {
    padding: 0 24px;
  }

  .certs__card {
    padding: 20px;
  }

  .certs__card-header {
    flex-direction: column;
    gap: 8px;
  }

  .certs__tag {
    margin-bottom: 16px;
  }
}
