.quote-request {
    clear: both;
    margin: 12px 0 16px;
}
.quote-request__card {
    border: 1px solid #b8e4f6;
    border-radius: 8px;
    background: #f7fcff;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 99, 154, .08);
}
.quote-request__title {
    margin: 0 0 6px;
    color: #0074ae;
    font-size: 23px;
    font-weight: 700;
    text-transform: uppercase;
}
.quote-request__intro,
.quote-request__privacy {
    margin: 0 0 14px;
    color: #4c5b63;
    line-height: 1.5;
}
.quote-request__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.quote-request__field--full { grid-column: 1 / -1; }
.quote-request__field label {
    display: block;
    margin-bottom: 5px;
    color: #173b4c;
    font-weight: 600;
}
.quote-request__field input,
.quote-request__field textarea {
    display: block;
    width: 100%;
    border: 1px solid #aac3cf;
    border-radius: 4px;
    background: #fff;
    padding: 9px 10px;
    color: #152d38;
}
.quote-request__field textarea { resize: vertical; }
.quote-request__consent {
    display: block;
    margin: 14px 0 5px;
    color: #173b4c;
    font-weight: 600;
}
.quote-request__consent input { margin-right: 6px; }
.quote-request__submit {
    border: 0;
    border-radius: 4px;
    background: #078bc7;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 20px;
}
.quote-request__submit:hover,
.quote-request__submit:focus { background: #006eaa; }
.quote-request__message {
    margin-bottom: 12px;
    border-radius: 4px;
    padding: 10px 12px;
}
.quote-request__message ul { margin: 0; padding-left: 18px; }
.quote-request__message--error { background: #fff0f0; color: #a31313; }
.quote-request__message--success { background: #eaf8ee; color: #176c31; }
.quote-request__honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}
@media (max-width: 600px) {
    .quote-request__card { padding: 14px; }
    .quote-request__title { font-size: 20px; }
    .quote-request__grid { grid-template-columns: 1fr; }
    .quote-request__field--full { grid-column: auto; }
    .quote-request__submit { width: 100%; }
}
