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

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

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

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

/* FAQ */
.faq-item {
  background: white;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  cursor: pointer;
  background: #fafafa;
}

.faq-question h3 {
  margin: 0;
  font-size: 16px;
}

.icon {
  font-size: 20px;
  color: maroon;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 15px;
}

.faq-answer p {
  margin: 10px 0;
  color: #444;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px;
}
.faq-search {
  text-align: center;
  margin-bottom: 20px;
}

.faq-search input {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  border-radius: 25px;
  border: 1px solid #ccc;
  font-size: 14px;
  outline: none;
}

.faq-search input:focus {
  border-color: maroon;
}
.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;
}
/* HEADER */
.ck-header {
  background: white;
  padding: 15px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo-text h2 {
  margin: 0;
  font-size: 18px;
  color: maroon;
}

.logo-text p {
  margin: 0;
  font-size: 12px;
  color: #666;
}

/* NAV */
.header-nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: 0.3s;
}

.header-nav a:hover {
  color: maroon;
}

/* MOBILE */
@media (max-width: 600px) {
  .logo-text p {
    display: none;
  }

  .header-nav a {
    margin-left: 10px;
    font-size: 13px;
  }
}
.logo {
  transition: 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}