/* ==== GENERAL PAGE ==== */
body {
  margin: 0;
  font-family: "VesperLibre-Bold", sans-serif;
  background-color: #fff;
}

/* ==== MAIN CONTAINER ==== */
.accessibility-page {
  display: flex;
  justify-content: center;
  padding: 60px 20px;
  background-color: #ffffff;
}

.accessibility-frame {
  background: rgba(3, 159, 200, 0.05);
  border-radius: 15px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
  max-width: 1100px;
  width: 100%;
  padding: 60px 70px;
  box-sizing: border-box;
}

/* ==== HEADING ==== */
.accessibility-frame h1 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 10px;
  color: #000;
}

.updated-date {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 35px;
}

/* ==== PARAGRAPHS ==== */
.accessibility-frame p {
  color: #000;
  font-size: 18px;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 25px;
}

/* ==== SUB HEADINGS ==== */
.accessibility-frame h2 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-top: 40px;
  margin-bottom: 15px;
  text-align: left;
}

/* ==== LIST ==== */
.accessibility-frame ul {
  list-style-type: disc;
  padding-left: 40px;
  margin-top: 0;
  margin-bottom: 25px;
}

.accessibility-frame li {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1.7;
  color: #000;
}

/* ==== CONTACT INFO ==== */
.contact-info {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 10px;
}

/* ==== FOOTER NOTE ==== */
.footer-note {
  text-align: center;
  margin-top: 40px;
  font-weight: 600;
  font-size: 18px;
  color: #000;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 992px) {
  .accessibility-frame {
    padding: 40px 25px;
    border-radius: 0;
    box-shadow: none;
  }

  .accessibility-frame h1 {
    font-size: 30px;
  }

  .updated-date {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .accessibility-frame p,
  .accessibility-frame li {
    font-size: 17px;
    text-align: justify;
  }

  .accessibility-frame h2 {
    font-size: 20px;
    text-align: center;
  }

  .accessibility-frame ul {
    padding-left: 20px;
  }

  .contact-info {
    text-align: center;
    font-size: 16px;
  }

  .footer-note {
    font-size: 16px;
  }
}
