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

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

.accessibility-frame {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 244, 236, 0.96));
  border: 1px solid rgba(200, 167, 91, 0.24);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(31, 24, 14, 0.08);
  max-width: 1100px;
  width: 100%;
  padding: 60px 70px;
  box-sizing: border-box;
}

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

.updated-date {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #a88432;
  margin-bottom: 35px;
}

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

/* ==== SUB HEADINGS ==== */
.accessibility-frame h2 {
  font-size: 15px;
  font-weight: 700;
  color: #a88432;
  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: 12px;
  margin-bottom: 10px;
  line-height: 1.7;
  color: #5f564a;
}

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

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

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

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

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

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

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

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

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

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


