body {
    background-color: #ffffff;
}


/* ============================= */
/* HERO SECTION */
/* ============================= */
.hero {
    background-color: #f5f7fb;
    padding: 1rem 1rem;
    font-family: 'Times New Roman', Times, serif;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;

  margin: 0 auto;
}

.hero-right {
    max-width: 650px;
}

.home-text {
    color: #122959;
    text-decoration: none;
    font-size: 1rem;
}

.home-text:hover {
    color: #3157e0;
}

.hero-heading {
    margin-top: 10px;

    color: #3157e0;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
}

.hero-subheading {
    color: #0f2147;
    letter-spacing: 1px;
    font-size: 22px;
}

.hero-text {
    color: #000;
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-button {
    background: linear-gradient(135deg, #4f6dff, #2f55d4);
    color: #fff !important;

    padding: 14px 22px;
    border-radius: 10px;

    text-decoration: none;
    font-size: 18px;
    font-weight: 800;

    transition: all 0.25s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(47, 85, 212, 0.3);
}

.hero-image {
  position: relative;
  background: #f5f7fb; /* page background */
}

.hero-image img {
  width: 100%;
  display: block;

  -webkit-mask-image:
    linear-gradient(to right,
      transparent 0%,
      black 12%,
      black 88%,
      transparent 100%
    ),
    linear-gradient(to bottom,
      transparent 0%,
      black 12%,
      black 88%,
      transparent 100%
    );

  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}


/* ============================= */
/* CONTENT SECTION */
/* ============================= */
.content {
    margin-top: auto;
    padding: 2.5rem 2rem;
    font-family: 'Times New Roman', Times, serif;
    max-width: 1200px;

    align-self: center;
}

.content-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
    justify-items: center;

}

.content-heading {
    color: #122959;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 18px;
}

.content-text {
    font-size: 18px;
    color: #000;
}

.content-list {
    list-style: square;
    padding-left: 18px;

    display: flex;
    flex-direction: column;
    gap: 6px;

    font-size: 18px;
    color: #000000;
}



/* ============================= */
/* HELP SECTION */
/* ============================= */
.help {
    margin-top: auto;
    padding: 2.5rem 1rem;
    font-family: 'Times New Roman', Times, serif;

    background: #f5f7fb;
}

.help-container {
    max-width: 1200px;
    justify-self: center;
}

.help-heading {
    color: #122959;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 18px;
    text-align: center;
}

.help-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 100px;
    text-align: center;
}

.help-section {
    max-width: 300px;
}

.help-photo {
    width: 140px;
}

.help-subheading {
    color: #000;
    font-size: 24px;
}

.help-text {
    font-size: 16px;
}


/* ============================= */
/* CONCLUSION SECTION */
/* ============================= */
.conclusion {
    margin-top: auto;
    padding: 1.3rem 1rem;
    font-family: 'Times New Roman', Times, serif;

    background: #0f2147;
    color: #ffffff;
}

.conclusion-container {
    max-width: 1200px;
    justify-self: center;
    justify-items: center;
}

.conclusion-heading {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.6px;
}

.conclusion-text {
    font-size: 18px;
    font-weight: 200;
}