.vv-contact-section {
  padding: 40px 0;
  background: #ffffff;
}

.vv-contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  padding: 0 15px;
}

.vv-contact-left {
  width: 50%;
  border-right: 1px solid #ddd;
}

.vv-contact-scroll {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 15px;
}

.vv-contact-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #016eaf;
}

.vv-contact-left p {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

.vv-contact-left p a {
  color: #555;
}

.vv-contact-left hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.vv-contact-right {
  width: 50%;
}

.vv-form-heading {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 600;
}

.vv-contact-form input,
.vv-contact-form select,
.vv-contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

.vv-contact-form textarea {
  resize: none;
  height: 100px;
}

.vv-form-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vv-captcha-box {
  padding: 12px 16px;
  background: #f3f3f3;
  font-weight: bold;
  letter-spacing: 3px;
  border: 1px solid #ccc;
}

.vv-form-row input {
  flex: 1;
}

.vv-form-row button {
  padding: 12px 25px;
  border: none;
  background: #016eaf;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
}

/* Responsive */
@media (max-width: 768px) {
  .vv-contact-container {
    flex-direction: column;
  }

  .vv-contact-left,
  .vv-contact-right {
    width: 100%;
    border: none;
  }

  .vv-form-row {
    flex-direction: column;
    align-items: stretch;
  }
}
