/* Layout */
.contact-page .contact-title{
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .5px;
}

.contact-page .contact-grid{
  display: flex;
  gap: 42px;
  align-items: flex-start;
}

.contact-page .contact-left{
  width: 36%;
  min-width: 240px;
}

.contact-page .contact-right{
  width: 64%;
}

/* Left column */
.contact-page .contact-block{
  margin-bottom: 22px;
}

.contact-page .contact-block h3{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.contact-page .contact-block p{
  margin: 0 0 8px;
}

/* Form */
.contact-page .contact-form .field{
  margin-bottom: 14px;
}

.contact-page .contact-form input[type="text"],
.contact-page .contact-form input[type="email"],
.contact-page .contact-form textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.35);
  border-radius: 2px;
  padding: 10px 12px;
  font-size: 14px;
  background: #fff;
  box-sizing: border-box;
}

.contact-page .contact-form textarea{
  min-height: 120px;
  resize: vertical;
}

/* File input (keep it simple like screenshot) */
.contact-page .contact-form input[type="file"]{
  width: 100%;
}

/* Submit button full width like screenshot */
.contact-page .contact-submit{
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #4472C4;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  background: #4472c4;
  color: #fff;
  font-size: 14px;
}

.contact-page .contact-submit:hover{
  background: #2c4e8c;
  border: 2px solid #2c4e8c;
  color: #fff
}

/* Alerts */
.contact-page .contact-alert{
  padding: 10px 12px;
  margin: 0 0 16px;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,.2);
}

/* Honeypot hidden (extra-strong) */
.contact-page .contact-honeypot{
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
}

@media (max-width: 800px){
  .contact-page .contact-grid{
    flex-direction: column;
  }
  .contact-page .contact-left,
  .contact-page .contact-right{
    width: 100%;
  }
}