body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.banner-wrapper {
  position: relative;
  width: 100%;
}

.banner {
  width: 100%;
  height: 655px;
  display: block;
  object-fit: cover;
}

.banner-caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 60%;
  background-color: white;
  padding-left: 36px;
  padding-top: 20px;
  padding-right: 36px;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  overflow: hidden;
}

.page-title {
  margin: 0;
  font-size: 36px;
  text-align: left;
  color: #1b6585;
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 700;
}

.menu-bar {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 82px;
  padding: 4px 36px;
  border-radius: 40px;
  background: rgba(242, 245, 247, 0.7);
  box-shadow: 0px 4px 4.2px 1px rgba(60, 64, 71, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.menu-logo img {
  height: 60px;
  object-fit: contain;
}

.menu-items.desktop-menu {
  display: flex;
  gap: 36px;
  align-items: center;
  height: 100%;
}

.menu-item {
  text-decoration: none;
  color: #1b6585;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 4px;
}

.menu-item:hover {
  font-weight: 700;
}

.menu-item.selected {
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.menu-item.selected::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%;
  height: 2px;
  background-color: #1b6585;
}

.menu-cta {
  text-decoration: none;
  background-color: #196585;
  color: white;
  padding: 20px 32px;
  border-radius: 34px;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  display: inline-block;
}

.menu-cta:hover {
  background-color: #155574;
}

.hamburger-menu {
  display: none;
  position: absolute;
  top: 18px;
  right: 8%;
  cursor: pointer;
  padding: 10px;
  z-index: 1000;
}

.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #1b6585;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.menu-items.mobile-menu {
  display: none;
}

.about-paragraphs {
  width: 80%;
  margin: 45px auto 0 auto;
}

.about-paragraphs p {
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}

.inline-link {
  color: #1b6585;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-decoration-line: underline;
}

.highlight-section {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 80%;
  height: 460px;
  margin: 64px auto;
  border-radius: 12px;
  overflow: hidden;
  background-color: transparent;
}

.highlight-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(203, 226, 236, 1) 0%,
    rgba(203, 226, 236, 1) 40%,
    rgba(203, 226, 236, 0.7) 65%,
    rgba(203, 226, 236, 0.3) 80%,
    rgba(203, 226, 236, 0) 100%
  );
}

.highlight-text-wrapper {
  flex: 0 0 40%;
  padding: 36px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.highlight-title {
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 54px;
  color: var(--material-theme-sys-light-on-background, #171c1f);
  margin: 0;
}

.highlight-subtitle {
  margin-top: 24px;
  font-size: 24px;
  font-family: Poppins, sans-serif;
  font-weight: 500;
  line-height: normal;
  color: var(--material-theme-sys-light-on-background, #171c1f);
}

.highlight-text-wrapper .menu-cta {
  margin-top: 24px;
  align-self: flex-start;
}

.highlight-image-wrapper {
  flex: 0 0 65%;
  position: relative;
  z-index: 0;
  overflow: hidden;
  height: 100%;
}

.highlight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer {
  background-color: #104156;
  min-height: 420px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  gap: 48px;
}

.footer-column {
  flex: 1 1 300px;
  min-width: 240px;
}

.footer-title {
  margin-top: 44px;
  margin-bottom: 16px;
  color: var(--material-theme-sys-light-on-tertiary, #fff);
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  color: #fff;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.footer-links-list a:hover {
  text-decoration: underline;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 50px;
}

.footer-brand-text {
  color: var(--material-theme-sys-light-surface, #f7f9ff);
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  max-width: 400px;
}

.footer-address {
  margin-top: 16px;
  color: var(--material-theme-sys-light-on-primary, #fff);
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footer-bottom-links {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-bottom-links h2 {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.footer-bottom-links a {
  color: #fff;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-decoration: underline;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 43px;
  width: 80%;
  margin: 32px auto 32px auto;
  justify-content: flex-start;
}

.product-image-wrapper {
  background-color: white;
  border-radius: 6px;
  width: 100%;
  height: 329px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card {
  background: #f5f5f5;
  border-radius: 10px;
  padding: 16px 16px 32px 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-title {
  color: #001e2c;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin: 16px 0;

  display: -webkit-box;
  display: box;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-info-box {
  display: flex;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  background: #fff;
  margin-top: 12px;
}

.product-info-text {
  color: #001e2b;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
}

.product-card-link {
  flex: 0 0 calc((100% - 2 * 43px) / 3);
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  display: flex;
}

.about-paragraphs ul {
  padding-left: 0;
  margin: 0 0 20px 0;
  list-style: none;
}

.about-paragraphs ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #000;
  font-family: Poppins, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.about-paragraphs ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #1b6585;
  font-size: 22px;
  line-height: 1;
}

@media (max-width: 991px) {
  .banner {
    height: 408px;
  }

  .page-title {
    text-align: center;
  }

  .menu-bar .desktop-menu {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .menu-items.mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 267px;
    height: 100vh;
    background: rgba(249, 249, 249, 0.9);
    border-radius: 16px 0px 0px 16px;
    box-shadow: 4px 12px 4.3px 0px rgba(100, 100, 100, 0.25);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    flex-direction: column;
    transition: transform 0.3s ease;
    z-index: 1001;
    transform: translateX(100%);
    box-sizing: border-box;
    visibility: hidden;
    padding: 0;
  }

  .menu-items.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
  }

  .menu-row {
    margin: 0 12px;
  }

  .menu-row:first-child {
    margin-top: 12px;
  }

  .menu-text {
    display: block;
    padding: 18px 16px;
    font-family: Poppins, sans-serif;
    font-style: normal;
    color: #41484d;
    border-radius: 100px;
    text-decoration: none;
  }

  .menu-text.brand {
    font-size: 20px;
    font-weight: 700;
    border-radius: 0;
  }

  .menu-text.selectable {
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
  }

  .menu-text.selectable.selected {
    background-color: #cbe2ec;
    font-weight: 600;
  }

  .menu-bar {
    padding: 4px 20px;
  }

  .highlight-section {
    flex-direction: column;
    height: auto;
  }

  .highlight-text-wrapper {
    width: 100%;
    max-width: 100%;
    padding: 24px;
    order: 2;
    box-sizing: border-box;
  }

  .highlight-image-wrapper {
    width: 100%;
    height: 300px;
    order: 1;
  }

  .highlight-gradient {
    background: linear-gradient(
      0deg,
      rgba(203, 226, 236, 1) 0%,
      rgba(203, 226, 236, 1) 50%,
      rgba(203, 226, 236, 0.7) 60%,
      rgba(203, 226, 236, 0) 100%
    );
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
  }

  .product-card-link {
    flex: 0 0 100%;
  }

  .highlight-title {
    font-size: 24px;
  }

  .highlight-subtitle {
    font-size: 16px;
  }
}
