* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  color: #1a1a1a;
}

/* TOP BAR */
.top-bar {
  background: #eaf6f8;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.top-bar a {
  margin-right: 15px;
  text-decoration: none;
  color: #005ea2;
  font-weight: 500;
}

/* MAIN NAV */
.main-nav {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #005ea2;
  margin-right: 30px;
}

.menu {
  display: flex;
  list-style: none;
  gap: 25px;
  flex-grow: 1;
}

.menu li {
  cursor: pointer;
  font-weight: 600;
  color: #005ea2;
}

.search-box input {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #ccc;
  outline: none;
}

/* HERO */
.hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* CONTENT */
.content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.content h1 {
  font-size: 42px;
  margin-bottom: 25px;
  color: #002d5f;
}

.content h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #002d5f;
}

.content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .hero img {
    height: 260px;
  }

  .content h1 {
    font-size: 32px;
  }
}
/* INFO SECTION */
.info-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 90px;
}

.info-block.reverse {
  flex-direction: row-reverse;
}

.info-image img {
  width: 420px;
  border-radius: 4px;
  object-fit: cover;
}

.info-text h2 {
  font-size: 28px;
  color: #002d5f;
  margin-bottom: 18px;
}

.info-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #333;
}

.info-text a {
  color: #005ea2;
  text-decoration: none;
  font-weight: 600;
}

.info-link {
  display: inline-block;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .info-block,
  .info-block.reverse {
    flex-direction: column;
  }

  .info-image img {
    width: 100%;
  }
}
/* HELP PLAN */
.help-plan {
  background: #fbf8f2;
  padding: 60px 20px;
}

.help-content {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

.help-icon {
  font-size: 70px;
}

.help-text h2 {
  font-size: 28px;
  color: #002d5f;
  margin-bottom: 10px;
}

.help-text p {
  font-size: 16px;
  margin-bottom: 20px;
}

.help-text button {
  padding: 10px 22px;
  border-radius: 25px;
  border: 2px solid #005ea2;
  background: white;
  color: #005ea2;
  font-weight: 600;
  cursor: pointer;
}

.help-text button:hover {
  background: #005ea2;
  color: white;
}

/* MORE LIKE THIS */
.more-like {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.more-like a {
  margin-left: 20px;
  color: #005ea2;
  text-decoration: none;
  font-weight: 600;
}

/* FOOTNOTES */
.footnotes {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.footnotes h4 {
  margin-bottom: 10px;
}

.footnotes a {
  color: #005ea2;
  text-decoration: none;
}

/* FOOTER */
.uhc-footer {
  background: #eaf6f8;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  gap: 120px;
}

.footer-column h4 {
  margin-bottom: 15px;
  color: #002d5f;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: #005ea2;
  text-decoration: none;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .help-content {
    flex-direction: column;
    text-align: center;
  }

  .uhc-footer {
    flex-direction: column;
    gap: 40px;
  }

  .more-like a {
    display: block;
    margin: 10px 0 0;
  }
}
