/* FAQ */

.faq-wrap{
  margin-top: 18px;
}

.faq-section-title{
  margin: 22px 0 10px;
}

.accordion{
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}

.acc-item + .acc-item{
  border-top: 1px solid var(--border);
}

.acc-btn{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-align: left;
}

.acc-btn:hover{
  background: rgba(0,0,0,.03);
}

.acc-icon{
  width: 32px;
  height: 32px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

.acc-panel{
  padding: 0 16px 14px;
}

.acc-panel p{
  margin: 10px 0 0;
}

.faq-contact{
  margin-top: 26px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.72);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.notice{
  padding: 12px 14px;
  border-radius: 14px;
  margin: 10px 0 14px;
  border: 1px solid var(--border);
}
.notice.ok{ background: rgba(140,220,140,.25); }
.notice.err{ background: rgba(255,120,120,.18); }

/* Row for Name + Email */
.field-row {
  display: flex;
  gap: 10%; /* space between inputs */
  justify-content: space-between;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.field-row .field {
  flex: 0 0 45%; /* width ~45% */
}

/* Full width for textarea */
textarea {
  width: 100%;
  box-sizing: border-box; /* ensures padding doesn't break layout */
}

/* Optional: adjust input widths too */
.field input {
  width: 100%;
  box-sizing: border-box;
}

.btn.primary {
    background: linear-gradient(135deg, var(--green-soft), var(--sun));
    FONT-SIZE: 16px;
    font-family: inherit;
}

