
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #f5f5f5;
      color: #333;
    }

    .container {
      max-width: 1100px;
      margin: 40px auto;
      padding: 20px;
    }

    h1 {
      text-align: center;
      color: maroon;
      margin-bottom: 10px;
    }

    .subtitle {
      text-align: center;
      color: #666;
      margin-bottom: 40px;
    }

    .contact-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .contact-info, .contact-form {
      background: white;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    .contact-info h2,
    .contact-form h2 {
      color: maroon;
      margin-bottom: 15px;
    }

    .contact-info p {
      margin: 10px 0;
      line-height: 1.5;
    }

    .info-item {
      margin: 15px 0;
    }

    .info-item strong {
      display: block;
      margin-bottom: 5px;
    }

    /* FORM */
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 12px;
      margin: 10px 0;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 14px;
    }

    .contact-form textarea {
      height: 120px;
      resize: none;
    }

    .contact-form button {
      background: maroon;
      color: white;
      border: none;
      padding: 12px;
      width: 100%;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
      transition: 0.3s;
    }

    .contact-form button:hover {
      opacity: 0.9;
    }

    .note {
      font-size: 13px;
      color: #777;
      margin-top: 10px;
    }

    /* MOBILE */
    @media (max-width: 800px) {
      .contact-box {
        grid-template-columns: 1fr;
      }
    }
    .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.logo img {
    width: 40px;
}.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;
  }
}
.card {
  background: white;
  padding: 20px;
  margin: 20px auto;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  max-width: 900px;
}
.reveal {
  opacity: 0;
  transform: translateX(80px);
  transition: all 0.6s ease;
}

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

.reveal.hide {
  opacity: 0;
  transform: translateX(80px);
}
.contact-highlight {
  background: white;
  padding: 25px;
  margin: 30px auto;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0,0,0,0.06);
}

.contact-highlight h2 {
  color: maroon;
  margin-bottom: 20px;
}

.highlight-items {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.highlight-box {
  background: #fafafa;
  padding: 15px 20px;
  border-radius: 10px;
  min-width: 150px;

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: 0.3s;
}

.highlight-box i {
  font-size: 22px;
  color: maroon;
  margin-bottom: 8px;
}

.highlight-box:hover {
  transform: translateY(-5px);
  background: #f3f3f3;
}

.form-toast {
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  display: none;
  text-align: center;
}

.form-toast.success {
  background: #e6f9ec;
  color: #0b6b2f;
  border: 1px solid #b7e4c7;
}

.form-toast.error {
  background: #fdeaea;
  color: #b00020;
  border: 1px solid #f5c2c7;
}