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

.container {
  max-width: 900px;
  margin: auto;
  padding: 30px;
}

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

.intro {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

/* CARDS */
.card {
  background: white;
  padding: 20px;
  margin: 20px 0;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.card h2 {
  color: maroon;
}

/* ROLES */
.roles {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.role-box {
  flex: 1;
  background: #fafafa;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s ease;
}

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

.reveal.hide {
  opacity: 0;
  transform: translateX(100px);
}

/* MOBILE */
@media (max-width: 700px) {
  .roles {
    flex-direction: column;
  }
}
.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;
  }
}