
html, body {
  font-family: sans-serif;
  background: #ffffff;
  margin: 0;
  padding: 0;
}

body,
.pkp_structure_page,
.pkp_structure_content,
.pkp_structure_main,
.pkp_structure_footer_wrapper {
  background: #ffffff;
}

.header-banner {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

a {
  color: #0d2455;
  text-decoration: none;
}

a:hover {
  color: #c7b4a5;
  text-decoration: underline;
}

/* Clean and compact footer */
.pkp_structure_footer_wrapper {
  border-top: 1px solid #ccc;
  padding: 10px 15px;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333;
}

.pkp_structure_footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1140px;
  margin: auto;
  gap: 10px;
}

.pkp_structure_footer > div:first-child {
  flex: 1 1 60%;
  line-height: 1.5em;
}

.pkp_structure_footer > div:last-child {
  flex: 1 1 35%;
  text-align: right;
}

.pkp_structure_footer img {
  max-width: 100px;
  height: auto;
}

/* Accordion block */
.accordion {
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 20px;
}

.accordion input {
  display: none;
}

.accordion label {
  display: block;
  background-color: #19145b;
  color: #fff;
  padding: 12px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
  position: relative;
}

.accordion label::after {
  content: '▸';
  position: absolute;
  right: 15px;
  transition: transform 0.3s ease;
}

.accordion input:checked + label::after {
  transform: rotate(90deg);
}

.accordion-content {
  background-color: #2a2573;
  display: none;
}

.accordion input:checked ~ .accordion-content {
  display: block;
}

.accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.accordion-content li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #3d398b;
}

.accordion-content li a:hover {
  background-color: #3d398b;
}

.pkp_site_name .is_text {
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
  font-size: .93rem;
  font-weight: 700;
  line-height: 2.857rem;
  color: #ffffff00;
  text-decoration: none;
}

@media (max-width: 768px) {
  .pkp_structure_footer {
    flex-direction: column;
    text-align: center;
  }

  .pkp_structure_footer > div {
    flex: 1 1 100%;
  }

  .pkp_structure_footer > div:last-child {
    margin-top: 10px;
  }

  .header-banner {
    max-height: 300px;
  }
}
