.iwohd-form-wrapper{
    max-width:1100px;
    margin:40px auto;
    background:#fff;
    border-radius:15px;
    padding:40px;
    box-shadow:0 5px 30px rgba(0,0,0,.08);
}

.iwohd-header{
    text-align:center;
    margin-bottom:35px;
}

.iwohd-header img{
    max-width:120px;
    margin-bottom:15px;
}

.iwohd-header h1{
    margin:0;
    color:#0a4d8c;
    font-size:32px;
}

.iwohd-header h2{
    margin-top:10px;
    color:#666;
    font-size:20px;
}

.iwohd-section{
    margin-bottom:35px;
}

.iwohd-section h3{
    background:#0a4d8c;
    color:#fff;
    padding:12px 20px;
    border-radius:8px;
    margin-bottom:20px;
}

.iwohd-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.iwohd-field label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.iwohd-field input,
.iwohd-field select,
.iwohd-field textarea{
    width:100%;
    padding:12px;
    border:1px solid #dcdcdc;
    border-radius:8px;
    font-size:14px;
}

.iwohd-field input:focus,
.iwohd-field select:focus,
.iwohd-field textarea:focus{
    outline:none;
    border-color:#0a4d8c;
}

.iwohd-submit{
    text-align:center;
    margin-top:30px;
}

.iwohd-submit input{
    background:#0a4d8c;
    color:#fff;
    border:none;
    padding:14px 40px;
    border-radius:8px;
    font-size:16px;
    cursor:pointer;
}

.iwohd-submit input:hover{
    opacity:.9;
}

@media(max-width:768px){

    .iwohd-grid{
        grid-template-columns:1fr;
    }

}