.guided-search-wrapper-35a5618c {
  font-family: inherit;
  width: 100%;
  max-width: 100%;
  margin: 0;
  position: relative;
  background: transparent;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

.gs-heading {
  flex: 1 1 auto;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  color: #0d2c47;
  transition: color 0.4s ease;
}

.gs-content {
  position: relative;
  flex: 0 1 var(--gs-form-width, 440px);
  min-width: 0;
  min-height: 400px;
}

.gs-field-group {
  position: relative;
}

.gs-label {
  font-size: 18px;
  color: #666;
  margin-bottom: 15px;
  transition: color 0.4s ease;
}

.gs-select-wrapper {
  position: relative;
  width: 100%;
}

.gs-select-trigger {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  font-size: 18px;
  color: #333;
  background: transparent;
  transition: color 0.4s ease, border-color 0.3s ease;
}

.gs-select-trigger:hover {
  border-bottom-color: #999;
}

.gs-select-icon {
  margin-right: 15px;
  display: flex;
  align-items: center;
  color: #999;
}

.gs-select-text {
  flex: 1;
}

.gs-select-arrow {
  display: flex;
  align-items: center;
  color: #999;
  transition: transform 0.3s ease;
}

.gs-select-wrapper.is-open .gs-select-arrow {
  transform: rotate(180deg);
}

.gs-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  border-radius: 0 0 8px 8px;
}

.gs-select-wrapper.is-open .gs-dropdown {
  display: block;
  animation: slideDown 0.2s ease-out;
}

.gs-dropdown-group-header {
  padding: 8px 15px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d2c47;
  background: #f0f2f4;
  cursor: default;
}

.gs-dropdown-item {
  padding: 12px 15px;
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 16px;
}

.gs-dropdown-item:hover {
  background: #f5f5f5;
}

.gs-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0d2c47;
  border: 1px solid #0d2c47;
  border-radius: 30px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gs-action-btn:hover {
  background: #0d2c47;
  opacity: 0.9;
}

.gs-btn-icon {
  margin-left: 10px;
  display: flex;
  align-items: center;
}

/* Overlay Results Styles */
.gs-results-overlay {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(13, 44, 71, 0.12);
  padding: 30px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.gs-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.gs-results-title {
  background: #0d2c47;
  color: #fff;
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
}

.gs-clear-btn {
  background: none;
  border: 1px solid #0d2c47;
  color: #0d2c47;
  cursor: pointer;
  font-size: 16px;
  padding: 0 0 2px 0;
}

.gs-clear-btn:hover {
  background: none !important;
}

.gs-results-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gs-result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0d2c47;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  transition: opacity 0.2s ease;
}

.gs-result-item:hover {
  opacity: 0.7;
}

.gs-result-item svg {
  width: 20px;
  height: 20px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive: stack heading above the form on smaller screens */
@media (max-width: 880px) {
  .guided-search-wrapper-35a5618c {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .gs-heading {
    flex: 0 0 auto;
  }

  .gs-content {
    flex: 1 1 auto;
  }
}

@media (max-width: 767px) {
  .gs-heading {
    font-size: 28px;
  }

  .gs-results-overlay {
    padding: 28px 24px;
  }

  .gs-results-title,
  .gs-result-item {
    font-size: 16px;
  }

  .gs-label,
  .gs-select-trigger {
    font-size: 16px;
  }
}