/* ---------- Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- Body ---------- */
.com-body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* ---------- logo ---------- */
header {
  text-align: center;
  padding: 0.25%;
  background: #0b57d0;
  color: white;
  padding: 15px 20px;
  text-align: center;
}
header img {
  display: block;
  margin: 0.3% auto;
  padding: 0.3%;
  width: 20%;
  height: auto;
  background-color: #cb95ed;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* ---------- Navigation ---------- */
.com-nav {
  background: #222;
}

.com-nav ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.com-nav ul a {
  display: block;
  margin: 8px;
  padding: 8px 10px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.com-nav a:hover {
  background: #0e5379;
  color: #e7f884;
  text-decoration: underline;
  transition: all 0.3s ease;
  border-radius: 5px;
}

/* breadcrumb , a , span*/
.breadcrumb {
  font-size: 80%;
  margin: 0.5% 0.5% 1% 0.5%;
  padding: 0.6%;
  text-align: center;
  border: 1px solid white;
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.5);
  color: rgb(220, 149, 149);
  background-color: rgb(15, 14, 14);
}

.breadcrumb a {
  text-decoration: none;
  color: #d7c60b;
}
.breadcrumb span {
  color: #09f709;
}

/* ---------- info source ---------- */
.info-source {
  text-align: center;
  margin: 2% 1%;
  font-size: 0.7rem;
}

/* ---------- Section-FAQs ---------- */
.section-faq{
margin-top:40px;
}

.faq-item{
margin-bottom:20px;
}

.faq-item h3{
font-size:18px;
margin-bottom:8px;
}

.faq-item p{
font-size:14px;
margin-bottom:12px;
}

/* ---------- Footer ---------- */

.com-footer {
  background: #111;
  padding: 12px 10px;
  color: white;
  font-size: 12px;
}

.com-footer div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  white-space: nowrap;
  gap: 12px;
}

.com-footer div a {
  padding: 8px 10px;
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.com-footer div a:hover {
  text-decoration: underline;
  color: #0b57d0;
  background: #0e5379;
  color: #e7f884;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.com-footer p {
  text-align: center;
  margin-top: 12px;
}

/* ---------- Mobile ---------- */

@media screen and (max-width: 600px) {
  .com-nav ul a {
    padding: 6px 6px;
    margin: 2px;
    font-size: 12px;
  }

  .com-footer {
    padding: 4px 2px;
  }

  .com-footer div {
    gap: 10px;
  }

  .com-footer div a {
    padding: 2px 2px;
  }

  .com-footer p {
    margin-bottom: 2px;
  }
}
