.agency-section {
  background: url('../img/newagency/contactus.jpeg') center center/cover no-repeat;
  position: relative;
  min-height: 100vh;
  font-family: Georgia, serif;
  color: white;
  display: flex;
  align-items: center;
}

.agency-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.agency-section .container {
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  padding: 3rem;
  gap: 2rem;
}

.agency-section .left-info,
.agency-section .right-form {
  width: 50%;
  padding: 1rem;
  box-sizing: border-box;
}

.agency-section .left-info h2 {
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.agency-section .left-info p {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.border-bottom-only {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background-color: transparent !important;
  color: white !important;
  font-size: 1rem;
  width: 100%;
}

.border-bottom-only::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.border-bottom-only:focus {
  border-bottom: 1px solid #f27b21;
  outline: none;
  box-shadow: none;
  background-color: transparent !important;
  color: white !important;
}

.submit-btn {
  background-color: #f27b21;
  color: white;
  border: none;
  padding: 10px 0;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.submit-btn:hover {
  background-color: #d66612;
}

@media (max-width: 992px) {
  .agency-section .container {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .agency-section .left-info,
  .agency-section .right-form {
    width: 100%;
  }

  .agency-section .left-info {
    text-align: center;
  }
}