:root {
  --secondary-color: #fe8004;
  --primary-color: #0b69a3;
  --margin-top-section: 5rem;
  --grag-color: #616161;
}
body {
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue",
    sans-serif;
}

/* Start Apply jop header */
.home-page-hcs {
  padding: 0;
  overflow: hidden;
}

header {
  .hero-section {
    background-image: url(../images/privicy-policy.jpg);
    background-size: cover;
    background-position: center;
    min-height: 60svh;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 5;
    }
    .hero-section-text {
      position: relative;
      z-index: 1501;
      h1 {
        font-size: 3rem;
        color: var(--secondary-color);
        font-weight: 700;
      }
      p {
        font-size: 2rem;
        color: #fff;
      }
    }
  }
}

@media (max-width: 768px) {
  .hero-section-text {
    h1 {
      font-size: 1.8rem !important;
      font-weight: 700 !important;
    }
    p {
      font-size: 1rem !important;
    }
  }
}

.terms-conditions-section {
  margin-top: var(--margin-top-section);
  .header {
    h1 {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 1rem;
    }
    h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--secondary-color);
    }
  }
  .description {
    padding-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
    p {
      font-size: 1rem;
      font-weight: 400;
      color: var(--grag-color);
    }
  }
}
