
/* Improved layout for SOTO forms */
.soto-form { max-width: 920px; margin: 20px auto; font-family: Arial, Helvetica, sans-serif; }
.soto-form h3, .soto-form h4 { margin-top: 20px; margin-bottom: 10px; font-weight: 600; }
.soto-grid-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 14px; align-items: start; }
.soto-grid-row .soto-field.full { grid-column: 1 / -1; }
.soto-field { display: flex; flex-direction: column; }
.soto-field label { font-size: 14px; margin-bottom: 6px; font-weight: 500; }
.soto-field input, .soto-field select, .soto-field textarea { padding: 10px; border: 1px solid #ccc; border-radius: 6px; font-size: 14px; box-sizing: border-box; }
.soto-form button { background: #2A7C61; color: #fff; border: 0; padding: 10px 16px; border-radius: 6px; cursor: pointer; font-size: 15px; margin-top: 8px; }
@media (max-width:700px) { .soto-grid-row { grid-template-columns: 1fr; } .soto-field.full { grid-column: 1 / -1; } }
