.section-header__header {
    padding: 20px 0;
}

.section-header__eyebrow {
    font-family: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25rem;
    color: #076790;
    text-transform: uppercase;
    letter-spacing: 4%;
    margin: 0 0 0.5rem 0;
}

.section-header__heading {
    font-family: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 3rem;
    font-weight: 500;
    color: #002957;
    margin: 0 0 1rem 0;
    line-height: 3.5rem;
}

.section-header__description {
    font-family: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    color: #002957;
    margin: 0 auto;
    line-height: 1.625rem;
}

.contact-form {
    padding: 4rem 0;
}

/* Sidebar Search */
.help-container {
  background: linear-gradient(145deg, #e6f4ff 0%, #c4e4ff 100%);
  border-radius: 40px;
  padding: 45px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.help-header-main {
  color: #1a4a6e;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}

.help-header-sub {
  color: #1a4a6e;
  font-size: 19px;
  margin-bottom: 35px;
}

.help-input-label {
  color: #076790;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4%;
  margin-bottom: 12px;
}

.help-input-group {
  position: relative;
  margin-bottom: 25px;
}

.help-input-field {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  font-size: 17px;
  color: #333;
  box-sizing: border-box; 
  outline: none;
}

.help-input-field::placeholder {
  color: #999;
}

.help-input-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  font-size: 22px;
  color: #005a8e;
  pointer-events: none;
}

.help-action-button {
  width: 100%;
  background-color: #fcb316;
  color: #1a4a6e;
  border: none;
  padding: 14px 18px;
  border-radius: 50px;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.help-action-button:hover {
  background-color: #fca500;
}

.help-action-button:active {
  transform: scale(0.98);
}