.marq-wrapper {
    max-width: 900px;
    margin: 0px auto;
    padding: 40px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius:5px;
}

.marq-products {
    margin-bottom: 40px;
}

.marq-product {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    background: #fafafa;
}

.marq-form input,
.marq-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.marq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.group-header {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    margin-top: 15px;
    display: block;
}

label.control-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
    gap: 10px;
}

span.sub-info {
    font-size: 12px;
    color: #777;
    margin-top: -5px;
    display: block;
}

.marq-section-title {
    font-weight: 600;
    margin: 30px 0 15px;
    font-size: 18px;
}

.marq-submit,
.marq-button {
    background: #1e73be;
    color: #fff;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.marq-submit:hover,
.marq-button:hover {
    background: #155a94;
}

@media(max-width: 768px){
    .marq-grid {
        grid-template-columns: 1fr;
    }
}