body {
  background: #f6f5f3;
  font-family: Arial, sans-serif;
  margin: 0;
}

img { max-width: 100%; height: auto; }

h2 {
  font-size: 1.8em;
  margin-bottom: 1%;
  padding-bottom: 0.5%;
  border-bottom: 1px solid #c5c5c5;
  color: #343434;
  text-align: center;
}

.container {
  width: 95%;
  max-width: 1400px;
  margin: 10% auto 0;
}

.header {
  text-align: center;
  background: #FFF;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5% 0;
  border-bottom: 1px solid #c5c5c5;
  border-top: 8px solid #214994;
  font-size: 2em;
  font-weight: bold;
  color: #343434;
}

.textholder {
  background: #FFF;
  border: 1px solid #c5c5c5;
  margin: 2% 0; 
  padding: 2%;
  width: 96%;
}

.flex {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.flex-center { flex: 1; }
.flex-right, .flex-left {
  flex: 0 0 25%;
  max-width: 200px;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.brand-logos img {
  max-height: 100px;
  object-fit: contain;
}

.footer {
  width: 100%;
  text-align: center;
  padding: 2% 0;
  background: #fff;
  border-top: 1px solid #c5c5c5;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .flex { flex-direction: column; text-align: center; }
  .flex-left, .flex-right, .flex-center {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1em;
}

table th, table td {
  border: 1px solid #c5c5c5;
  padding: 12px 15px;
  text-align: left;
}

table th {
  background-color: #f0f0f0;
  font-weight: bold;
}

table tr:nth-child(even) {
  background-color: #fafafa;
}
