.quote-section {
  width: 100%;
  background: #fafafa;
  padding-top: 50px;
}

.quote-section__title {
  margin-top: 10px;
  width: 100%;
  height: 55px;
  line-height: 55px;
  color: #1c1c1c;
  font-weight: bold;
  text-align: center;
  font-size: 40px;
  font-family: "Domine", sans-serif;
}

.quote-section__form {
  width: 67%;
  margin: 22px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-section__fields-row {
  display: flex;
  gap: 24px;
}

.quote-section__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quote-section__field--full {
  width: 100%;
}

.quote-section__label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.quote-section__required {
  color: #e53935;
}

.quote-section__input,
.quote-section__textarea {
  width: 100%;
  padding: 0 16px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
  font-size: 14px;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  outline: none;
  resize: vertical;
}

.quote-section__input {
  height: 48px;
}

.quote-section__textarea {
  min-height: 120px;
  padding: 14px 16px;
  line-height: 1.5;
}

.quote-section__input::placeholder,
.quote-section__textarea::placeholder {
  color: #b0b0b0;
}

.quote-section__input:focus,
.quote-section__textarea:focus {
  border-color: #d3b574;
}

.quote-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.quote-section__submit {
  width: 40%;
  height: 40px;
  border: none;
  border-radius: 6px;
  background-color: #1c1c1c;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.quote-section__submit:hover {
  background-color: #333;
}

.site-footer {
  width: 100%;
  margin-top: 55px;
  padding: 48px 0 60px;
  background-color: #fff;
}

.site-footer__inner {
  width: 67%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.site-footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.site-footer__about p {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #1c1c1c;
}

.site-footer__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: #1c1c1c;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__list a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.site-footer__list a:hover {
  color: #1c1c1c;
}

.site-footer__contact {
  font-style: normal;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.site-footer__contact p {
  margin: 0 0 8px;
}

.site-footer__contact a {
  color: #555;
  text-decoration: none;
}

.site-footer__contact a:hover {
  color: #1c1c1c;
}

@media (max-width: 900px) {
  .quote-section__title {
    font-size: 28px;
    height: auto;
    line-height: 1.3;
    padding: 0 16px;
  }

  .quote-section__form {
    width: calc(100% - 32px);
    max-width: 560px;
  }

  .quote-section__fields-row {
    flex-direction: column;
    gap: 16px;
  }

  .quote-section__submit {
    width: 100%;
    max-width: 320px;
  }

  .site-footer__inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
