.quote-wrapper {
  width: 100%;
  font-family: Figtree;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.quote-wrapper .quote-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quote-wrapper .quote-section h3 {
  font-weight: 600;
}
.quote-wrapper .quote-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.quote-wrapper .quote-btn {
  background: white;
  border: 1px solid #ccc;
  color: #000;
  padding: 10px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  font-family: Figtree;
  font-size: 16px;
  transition: all 0.3s ease;
  /* width: 100px; */
}
.quote-wrapper .quote-btn:hover {
  background: #eabb72;
  color: white;
  border: 1px solid #eabb72;
}
.quote-wrapper .quote-btn.active {
  background: #eabb72;
  color: white;
  outline: none;
}
.quote-wrapper .quote-actions {
  margin-top: 40px;
  width: 100%;
}
.quote-wrapper .quote-actions button {
  background: #0d203a;
  color: #fff;
  border: none;
  padding: 22px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;

  /* background-color: #0d203a;
  padding-top: 16px;
  padding-right: var(--wp--preset--spacing--30);
  padding-bottom: 16px;
  padding-left: var(--wp--preset--spacing--30);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  border-radius: 12px;
  outline: none;
  border: none;
  width: 100%; */
  /* width: 280px; */
}

.quote-wrapper .quote-actions button:hover {
  transform: translateY(-2px);
  background: #0d203a;
}

.quote-wrapper .quote-actions button:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.quote-back {
  background: none;
  color: #eabb72;
  border: none;
  outline: none;
  font-family: Figtree;
  cursor: pointer;
  font-size: 16px;
}
.quote-back-arrow {
  display: inline-block;
  margin-right: 4px;
}
@media (max-width: 768px) {
  .quote-page-wrapper {
    margin: 8px 0 !important;
  }
  .quote-right-image {
    display: none;
  }
  .quote-wrapper .quote-actions button {
    width: 100%;
  }
  .quote-wrapper .quote-steps {
    gap: 16px;
  }
}
