:root{
  --blue: #173fb7;        /* azul tipo screenshot */
  --text: #111;
  --max: 980px;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}

.container{
  width: min(var(--max), calc(80% - 32px));
  margin: 0 auto;
}

/* Header logos */
.top{
  padding: 18px 0 10px;
}
.top-inner{
  display: flex;
  justify-content: center;
  align-items: center;
}
.logos{
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}

/* Hero blue bar */
.hero{
  background: var(--blue);
  padding: 22px 0;
}
.hero-inner{
  text-align: center;
}
.hero h1{
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .3px;
  line-height: 1.25;
  font-size: 20px;
}

/* Blue separator line */
.divider{
  height: 3px;
  background: var(--blue);
  margin: 18px auto;
}

/* Content spacing similar to screenshot */
.content{
  padding: 10px 0 30px;
}

.block{
  padding: 10px 0 18px;
  text-align: center;
}

.section-title{
  margin: 10px 0 18px;
  color: var(--blue);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase; /* como en la imagen */
}

/* Link list */
.links{
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  padding: 6px 0 10px;
}

.link{
  max-width: 900px;
  display: inline-block;
  text-align: center;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.25;
  text-decoration: none;
}

.link:hover{
  text-decoration: underline;
}

/* Footer */
.footer{
  padding: 10px 0 22px;
}
.footer-inner{
  text-align: center;
  color: #333;
  font-size: 12px;
}

/* Responsive tweaks */
@media (max-width: 600px){
  .hero h1{
    font-size: 16px;
    line-height: 1.28;
  }
  .link{
    font-size: 13px;
  }
}
