.package_section {
  margin: 20px auto;
  width: 80%;
  text-align: center;
  padding: 20px 0;
}

.package_section h3 {
  color: var(--color-black);
  font-family: var(--Faustina-font);
  font-size: 50px;
  margin: 10px 0;
  font-weight: 800;
}

.package_section_con {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}

.package_box {
  background-color: var(--color-blue);
  padding: 30px 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  width: 300px;
  border-radius: 20px;
  min-height: 400px;
}

.package_box span {
  background-color: white;
  padding: 10px 10px;
  margin: 20px 0;
  color: var(--color-black);
  width: 100%;
  font-family: var(--Fredoka-font);
  font-weight: 700;
  font-size: 30px;
  border-radius: 10px;
}

.package_box p {
  color: white;
  font-family: var(--Fredoka-font);
  font-weight: 300;
  font-size: 22px;
  text-align: left;
  width: 100%;
  position: relative;
  padding-left: 24px; /* space for bullet */
}

.package_box p::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 21px;
  color: white;
  line-height: 1;
}

.package_box button {
  background-color: white;
  padding: 10px 20px;
  color: black;
  font-family: var(--Fredoka-font);
  font-weight: 400;
  border: none;
  cursor: pointer;
  font-size: 20px;
  border-radius: 20px;
}

/* ////////////////////////////// */

.page_6_certifications_section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 80%;
  margin: 20px auto;
}

/* //////////////////////////////// */
/* Responsive Design  */

@media (max-width: 768px) {
  .package_section_con {
    flex-direction: column;
  }

  .page_6_certifications_section {
    flex-direction: column;
  }
}
