/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #F7F9FB;
  color: #2A2A2A;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background-color: #1E3A5F;
  color: white;
}

.logo {
  font-weight: bold;
  font-size: 18px;
}

.menu a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}

/* KPI BAR */
.kpi-bar {
  display: flex;
  justify-content: space-around;
  background-color: white;
  padding: 16px 0;
  border-bottom: 1px solid #E5E7EB;
}

.kpi {
  text-align: center;
}

.kpi-number {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: #1E3A5F;
}

.kpi-label {
  font-size: 12px;
  color: #7A7A7A;
}

/* HERO */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 24px;
  color: #555;
}

.cta {
  background-color: #2FBF71;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
}

/* CONTENT */
.content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.block {
  margin-bottom: 40px;
}

.block h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.block p {
  color: #555;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #1E3A5F;
  color: white;
  margin-top: 40px;
}

    .brand-header {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px 20px;
      background: #F7F9FB;
      border-bottom: 1px solid #E5E7EB;
    }

    .brand-header img {
      max-height: 56px;
      max-width: 220px;
      width: auto;
      height: auto;
      object-fit: contain;
    }

    @media (max-width: 600px) {
      .brand-header img {
        max-height: 44px;
        max-width: 180px;
      }
    }

ul, ol {
  padding-left: 1.5rem; 
}

