.elementor-928 .elementor-element.elementor-element-a41e203{--display:flex;}/* Start custom CSS for html, class: .elementor-element-86ffe2d */```css
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI',sans-serif;
    background:#f5f7f2;
    padding:15px;
    color:#333;
}

.container{
    max-width:900px;
    margin:auto;
    background:#ffffff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.form-wrapper{
    padding:20px;
}

h2{
    text-align:left;
    color:#556B2F;
    margin-bottom:10px;
    font-size:14px;
}

.section-title{
    background:#556B2F;
    color:#fff;
    padding:10px 15px;
    border-radius:8px;
    margin:20px 0 15px;
    font-size:15px;
    font-weight:600;
}

label{
    display:block;
    margin-bottom:02px;
    font-weight:00;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="time"],
textarea,
select{
    width:100%;
    padding:07px 10px;
    border:1px solid #d9d9d9;
    border-radius:8px;
    margin-bottom:02px;
    font-size:15px;
    transition:.3s;
    

    
}

input:focus,
textarea:focus,
select:focus{
    border-color:#556B2F;
    outline:none;
}

textarea{
    min-height:120px;
    resize:vertical;
}

.checkbox-group{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:15px;
}

.checkbox-group label{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:500;
    margin:0;
}

.checkbox-group input[type="checkbox"]{
    width:18px;
    height:18px;
}

.policy-box{
    background:#f8f8f8;
    border-left:4px solid #556B2F;
    padding:15px;
    margin-bottom:20px;
    border-radius:8px;
}

.submit-btn{
    width:100%;
    background:#25D366;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:8px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    transform:translateY(-2px);
}

@media (min-width:768px){

    .form-wrapper{
        padding:35px;
    }

    .two-columns{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    .full-width{
        grid-column:1/-1;
    }
}
```/* End custom CSS */