.section-1 {
  background: transparent linear-gradient(90deg, #d6e4e6 0%, #e7fff2 100%) 0% 0%
    no-repeat padding-box;
  margin-top: 140px;

  @media (max-width: 565px) {
    margin-top: 100px;
  }
}
h3.about-above {
  font-size: 25px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  margin-block-end: 15px;
}
.section-1 h1 {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
  margin-block-end: 15px;
}
h1 + p {
  margin-block-end: 45px;
}
h1 ~ p {
  text-align: center;
  width: min(100ch, 100%);
  margin-inline: auto;
}
h1 ~ p.note span {
  color: #575757;
}
.upperp {
  font-size: 16px;
  font-weight: 400;
}

.subp {
  font-size: 14px;
  font-weight: 400;
  color: #767373;
}

span.global-slash {
  font-size: 30px;
}

.section-2 .flex-50 {
  flex-wrap: wrap;
}

.section-2 .flex-50 .flex-hold {
  width: 100%;
}

.policy-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #0a1f3d;
  margin-bottom: 12px;
}

.policy-tag {
  background: #cffff3;
  color: #00e1a9;
  font-size: 15px;
  line-height: 1.15;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.section-2 .flex-row {
  align-items: flex-start;
  gap: 60px;
}

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

.policy-item {
  border-bottom: 1px solid #e5e8ec;
}

.policy-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #0a1f3d;
  text-align: left;
}

.policy-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #0a1f3d;
  border-bottom: 2px solid #0a1f3d;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.policy-toggle[aria-expanded='true'] .policy-arrow {
  transform: rotate(-135deg);
}

.policy-panel {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  transition:
    height 0.3s ease,
    opacity 0.25s ease,
    padding 0.3s ease;
}

.policy-panel.is-open {
  height: auto;
  opacity: 1;
  padding: 0 0 16px 0;
}

.policy-desc {
  font-size: 13px;
  color: #5a6472;
  margin: 0 0 10px 0;

  @media (max-width: 820px) {
    text-align: start !important;
  }
}

.policy-view-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #00c9a7;
  text-decoration: none;
  border: 1px solid #00c9a7;
  padding: 6px 14px;
  border-radius: 4px;
}

.policy-view-btn:hover {
  background: #00c9a7;
  color: #fff;
}

.global-section.section-2 .container {
  width: 70%;
}
ul.policy-list {
  margin-bottom: 10px;
}

.primary-footer {
  box-shadow: 0px -8px 20px #0000001a;
}

.d-grid {
  flex: 1;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

  @media (max-width: 565px) {
    grid-template-columns: 1fr;
  }

  .grid-cols-4 {
    width: min(220px, 100%);

    @media (max-width: 600px) {
      width: 100%;
    }

    .policy-title {
      font-size: 18px;
      font-weight: 700;
      line-height: 25px;
      color: #004e64;
    }
    ul.policy-list {
      padding-inline-start: 18px;
      list-style: disc;

      li {
        &::marker {
          color: #004e64;
        }
        a {
          font-size: 15px;
          font-weight: 500;
          line-height: 25px;
          color: #242424;
          text-decoration: none;
        }
      }
    }
  }
}

@media only screen and (max-width: 630px) {
  .global-section.section-2 .container {
    width: 100%;
  }

  p.policy-title,
  h2.policy-title {
    text-align: left;
  }
}
