h1,h2,h3,h4,button,a {
  font-family: "Gabarito", sans-serif;
}

h5,h6,p,ul,li,div,span,input,select,textarea,label,small {
  font-family: "Sofia Sans Condensed", sans-serif;
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #ffffff;
}

.quote-section {
  padding: 90px 24px;
  background: #ffffff;
}

.quote-wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 38px;
  border-radius: 8px;
  background: #00449c;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 50px rgba(0,0,0,0.26);
}

.rfq-back {
  display: inline-block;
  margin-bottom: 18px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}

.rfq-back:hover {
  text-decoration: underline;
}

.quote-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 14px;
}

.quote-subtext {
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  margin-bottom: 34px;
  max-width: 760px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #ffffff;
  font-size: 0.92rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.88);
  color: #0f172a;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 0.96rem;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(15,23,42,0.48);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.full-width {
  width: 100%;
}

.form-note {
  margin-top: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  font-weight: 600;
}

.checkbox-group {
  margin-top: -4px;
}

.check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  font-weight: 600;
}

.check-row input {
  margin-top: 4px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-actions {
  margin-top: 6px;
}

.quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: none;
  border-radius: 999px;
  background: #fff;
  color: #00449c;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(0,0,0,0.26);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0,0,0,0.32);
  background: #0f172a;
  color: #fff;
}

.form-message {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
}

.thank-you {
  padding: 90px 24px;
  background: #ffffff;
}

.thank-you-wrap {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 42px 28px;
  border-radius: 8px;
  background: #00449c;
  box-shadow: 0 22px 50px rgba(0,0,0,0.2);
}

.thank-you-wrap h1 {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
}

.thank-you-wrap p {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.thank-you-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  background: #ffffff;
  color: #00449c;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.thank-you-btn:hover {
  background: #0f172a;
  color: #ffffff;
}

@media (max-width: 768px) {
  .quote-section,
  .thank-you {
    padding: 82px 18px;
  }

  .quote-wrap,
  .thank-you-wrap {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-btn,
  .thank-you-btn {
    width: 100%;
  }
}