.sbf-section {
  background-color: #001489;
  text-align: center;
  padding: 40px 0;
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

.sbf-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
  color: #fff;
}

.sbf-container {
    display: inline-flex
;
    align-items: center;
    background: #ffffff;
    padding: 4px 16px;
    border-radius: 6px;
    gap: 5px;
    flex-wrap: nowrap;
    justify-content: center;
}

.sbf-container input {
  border: none;
  outline: none;
  font-size: 14px;
  padding: 8px 10px;
  color: #333;
  width: 140px;
  font-family: inherit;
  background: transparent;
}

.sbf-container input::placeholder {
  color: #999;
}

.sbf-container input[type="date"] {
  color: #555;
}

.sbf-container input[type="date"]::after {
  content: '';
}

.divider {
  color: #999;
  font-weight: 300;
  margin: 0 2px;
}

#quoteBtn {
  background-color: #f58220;
  color: #fff;
  border: none;
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-family: inherit;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

#quoteBtn:hover {
  background-color: #e67300;
}

#quoteBtn:active {
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .sbf-container {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    gap: 8px;
  }

  .sbf-container input {
    width: 100%;
  }

  .divider {
    display: none;
  }

  #quoteBtn {
    width: 100%;
  }
}
