.contact-section {
  background: #E0F0FF;
  padding: 70px 20px;
}

.contact-container {
  max-width: 700px;
  margin: auto;
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-title {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  color: #1E90FF;
  text-align: center;
  margin-bottom: 15px;
}

.contact-note {
  text-align: center;
  font-size: 15px;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.6;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1F3C88;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1E90FF;
  box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.15);
}

.contact-btn {
  width: 100%;
  background: #1E90FF;
  color: #FFFFFF;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #1873CC;
}

.form-status {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}