body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      background: #f9f9f9;
      color: #333;
    }

    .container {
      max-width: 900px;
      margin: 40px auto;
      padding: 30px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    h1 {
      color: maroon;
      text-align: center;
    }

    h2 {
      color: maroon;
      margin-top: 25px;
    }

    ul {
      margin-left: 20px;
    }

    p {
      margin: 10px 0;
    }
  .reveal {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateX(0);
}

/* When scrolling back up */
.reveal.hide {
  opacity: 0;
  transform: translateX(100px);
}
.ck-footer {
  background-color: maroon;
  color: white;
  padding: 40px 20px 20px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.footer-logo h2 {
  margin: 0;
}

.footer-logo p {
  font-size: 14px;
  opacity: 0.8;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.footer-bottom {
  font-size: 13px;
  opacity: 0.7;
}
@media (max-width: 600px) {
  .footer-links a {
    display: block;
    margin: 8px 0;
  }
}
a {
color: black;
  margin: 0 12px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}
a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.ck-footer {
  background-color: maroon;
  color: white;
  padding: 40px 20px 20px;
  margin-top: 50px;

  /* Rounded top corners */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.footer-logo h2 {
  margin: 0;
}

.footer-logo p {
  font-size: 14px;
  opacity: 0.8;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* SOCIAL ICONS */
.footer-social {
  margin: 20px 0;
}

.social-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 35px;
  height: 35px;
  margin: 5px;

  background: white;
  color: maroon;

  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;

  transition: 0.3s;
}

.social-box:hover {
  background: #f2f2f2;
  transform: scale(1.1);
}

/* CONTACT TEXT */
.footer-contact p {
  margin: 3px 0;
  font-size: 14px;
  opacity: 0.9;
}

.footer-bottom {
  margin-top: 15px;
  font-size: 13px;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 600px) {
  .footer-links a {
    display: block;
    margin: 8px 0;
  }
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.logo img {
    width: 40px;
}
/* AGREEMENT SECTION */

.agreement-section{
    padding: 50px 20px;
}

.agreement-box{
    max-width: 760px;
    margin: auto;
    background: white;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(128,0,0,0.08);
    text-align: center;
}

.agreement-box h2{
    color: maroon;
    margin-bottom: 15px;
    font-size: 28px;
}

.agreement-box p{
    color: #444;
    line-height: 1.7;
    margin-bottom: 25px;
}

.agree-check{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 600;
    color: #222;
    flex-wrap: wrap;
}

.agree-check input{
    display: none;
}

.custom-check{
    width: 24px;
    height: 24px;
    border-radius: 7px;
    border: 2px solid maroon;
    position: relative;
    transition: 0.3s;
}

.agree-check input:checked + .custom-check{
    background: maroon;
}

.agree-check input:checked + .custom-check::after{
    content: "✓";
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
}

.agreement-status{
    margin-top: 18px;
    font-size: 14px;
    color: #666;
}