:root {
  --pill-bg: #ffffff;
  --pill-radius: 8px;
  --max-width: 1200px;
}

.hero-section {
  background: linear-gradient(to right, #003366 0%, rgba(61, 179, 197, 0.8) 100%);
  position: relative;
}

.footer-image {
  text-align: center;
}


.footer-image img {
  max-width: 100%;
  height: auto;
}


ul.editorial-team {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
}


ul.editorial-team li {
  margin-bottom: 1.2rem;
}


ul.editorial-team .name {
  font-size: 1.15rem;      
  font-weight: 700;        
  color: #111;
}


ul.editorial-team .affiliation {
  font-size: 0.9rem;       
  color: #555;
}

/* ----------  Footer ---------- */
.footer {
  background-color: #ffffff;
  padding: 3rem 2rem;
  color: #333;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logos {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logos img {
  background-color: var(--pill-bg);
  padding: 0.5rem 1rem;
  border-radius: var(--pill-radius);
  height: 40px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.footer-logos img:hover {
  transform: translateY(-2px);
}

.footer-address {
  text-align: center;
}

.footer-address img {
  max-width: 220px;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .footer-logos {
    flex-direction: row;
    align-items: center;
  }

  .footer-address {
    text-align: left;
  }
}

/* === Hide Sections block, list, and horizontal line === */

/* Hide the <h4> heading */
h4 + ol > li.section_policy {
  display: none !important;
}

/* Hide the <ol> that contains it */
h4 + ol {
  display: none !important;
}

/* Hide the <h4> itself */
h4 {
  display: none !important;
}

/* Hide the <hr> immediately after the <ol> */
h4 + ol + hr.my-4 {
  display: none !important;
}

