.entry-title {
  text-align: center;
}

/* Wrapper */
.cf7-contact-wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

/* Title */
.cf7-contact-wrap .cf7-title{
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 28px;
  color: #111;
}

/* Layout */
.cf7-contact-wrap .cf7-row{
  margin: 0 0 22px;
}
.cf7-contact-wrap .cf7-two{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.cf7-contact-wrap .cf7-full{
  width: 100%;
}

/* Labels */
.cf7-contact-wrap .cf7-label{
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  margin: 0 0 8px;
}

/* Underline-only inputs */
.cf7-contact-wrap input[type="text"],
.cf7-contact-wrap input[type="email"],
.cf7-contact-wrap input[type="tel"],
.cf7-contact-wrap select{
  width: 100%;
  border: none;
  border-bottom: 1px solid #9aa1a9;
  padding: 10px 0 8px;
  background: transparent;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 14px;
  color: #111;
}

.cf7-contact-wrap input:focus,
.cf7-contact-wrap select:focus{
  border-bottom-color: #111;
}

/* Select dropdown arrow like screenshot */
.cf7-contact-wrap .cf7-select{
  position: relative;
}
.cf7-contact-wrap .cf7-select:after{
  content: "▼";
  position: absolute;
  right: 0;
  bottom: 10px;
  font-size: 10px;
  color: #666;
  pointer-events: none;
}
.cf7-contact-wrap select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 18px;
}

/* Bottom row: checkbox left, button right */
.cf7-contact-wrap .cf7-bottom{
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}

.cf7-contact-wrap .cf7-accept{
  font-size: 12px;
  color: #333;
}
.cf7-contact-wrap .cf7-accept a{
  text-decoration: underline;
  color: #111;
}

/* Make CF7 acceptance checkbox look clean */
.cf7-contact-wrap input[type="checkbox"]{
  margin-right: 8px;
  transform: translateY(1px);
}

/* Submit button (dark, right-aligned) */
.cf7-contact-wrap .cf7-submit-btn{
  background: #121826;
  color: #fff;
  border: none;
  padding: 14px 36px;
  min-width: 240px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}
.cf7-contact-wrap .cf7-submit-btn:hover{
  filter: brightness(1.05);
}

/* Mobile */
@media (max-width: 768px){
  .cf7-contact-wrap .cf7-two{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .cf7-contact-wrap .cf7-bottom{
    grid-template-columns: 1fr;
  }
  .cf7-contact-wrap .cf7-submit-btn{
    width: 100%;
    min-width: 0;
  }
}
