.consult-form {
  padding: 40px 0;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
}

.container-2 {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Phần mở đầu */
.intro {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  color: #0c1c4c;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.6;
  position: relative;
  margin: 20px 0;
  padding-left: 20px;
}

.quote-mark {
  font-size: 40px;
  color: #0c1c4c;
  font-style: italic;
}

.quote-mark.end {
  float: right;
  margin-right: 5px;
  margin-top: 10px;
}

h4 {
  margin-bottom: 30px;
  /* font-size: 30px; */
  font-weight: bold;
  color: #654100;
}

/* Dịch vụ */
.services {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.service-item {
  text-align: center;
  flex: 1 1 300px;
  max-width: 300px;
}

.service-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.service-item p {
  margin-top: 10px;
  font-weight: bold;
}

/* Dropdown */
.dropdowns {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
  color: black;
}

.form-select {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

/* Form inputs */
.form-input,
.form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 20px;
  font-size: 15px;
}

.form-textarea {
  height: 100px;
  resize: vertical;
}

/* Nút */
.btn-submit {
  background-color: #d40000;
  color: white;
  padding: 10px 65px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #b30000;
}

.btn-containe-2 {
  display: flex;
  justify-content: center; 
}

/* Responsive */
@media (max-width: 768px) {
  .container-2 {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .intro {
    font-size: 22px;
    line-height: 1.4;
  }

  h4 {
    font-size: 20px;
  }

  .services {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .service-item {
    width: 100%;
    max-width: 100%;
  }

  .btn-submit {
    font-size: 20px;
    padding: 10px 20px;
    width: 100%;
  }
}