/* Awards Header Section */
.awards-header-complete {
  background: #f7f6f2;
}

.awards-header-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 38px 22px 34px;
  text-align: center;
}

.awards-header-section h2 {
  margin: 0;
  color: #222222;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 980px;
  margin-inline: auto;
}

.awards-header-buttons {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.awards-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.awards-header-btn:hover {
  opacity: 0.9;
}

.awards-header-btn--dark {
  background: #3a3a3a;
  color: #ffffff;
}

.awards-header-btn--light {
  background: #c5baa8;
  color: #2f2f2f;
}

.awards-header-spacer {
  height: 6px;
}

@media (max-width: 980px) {
  .awards-header-section {
    padding: 32px 20px 28px;
  }

  .awards-header-buttons {
    margin-top: 28px;
    gap: 16px;
  }

  .awards-header-btn {
    min-width: 190px;
    padding: 12px 28px;
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .awards-header-section {
    padding: 26px 16px 22px;
  }

  .awards-header-section h2 {
    line-height: 1.14;
  }

  .awards-header-buttons {
    margin-top: 22px;
    gap: 12px;
    flex-direction: column;
  }

  .awards-header-btn {
    width: 100%;
    min-width: 0;
    max-width: 320px;
    font-size: 26px;
    padding: 12px 22px;
  }

  .awards-header-spacer {
    height: 2px;
  }
}

/* Existing Trust Strip CSS (kept exactly as provided) */
.ab-trust-strip {
  position: relative;
  background: #f7f6f2;
  padding: 14px 22px;
  overflow: hidden;
}

.ab-trust-strip * {
  box-sizing: border-box;
}

.ab-trust-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.ab-trust-track::-webkit-scrollbar {
  display: none;
}

.ab-trust-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 28px;
  position: relative;
  white-space: nowrap;
  color: #222222;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 400;
}

.ab-trust-item:first-child {
  padding-left: 0;
}

.ab-trust-item:last-child {
  padding-right: 28px;
}

.ab-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 46px;
  background: #cfc8bd;
}

.ab-trust-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6d6d6d;
}

.ab-trust-icon .ab-hex {
  position: absolute;
  inset: 0;
  width: 32px;
  height: 32px;
}

.ab-trust-icon .ab-hex polygon {
  fill: none;
  stroke: #7b7b7b;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.ab-trust-icon .ab-glyph {
  position: relative;
  z-index: 2;
  width: 15px;
  height: 15px;
  stroke: #5f5f5f;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.ab-trust-label {
  letter-spacing: 0;
}

@media (max-width: 980px) {
  .ab-trust-track {
    justify-content: flex-start;
  }

  .ab-trust-item {
    padding: 10px 22px;
    font-size: 14px;
  }

  .ab-trust-item:last-child {
    padding-right: 22px;
  }
}

@media (max-width: 767px) {
  .ab-trust-strip {
    padding: 12px 16px;
  }

  .ab-trust-item {
    gap: 10px;
    font-size: 13px;
  }

  .ab-trust-item:not(:last-child)::after {
    height: 38px;
  }
}
