.quote-hero {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 58px 0;
}

.quote-hero h1 {
    max-width: 820px;
    font-size: 38px;
    line-height: 1.15;
    margin: 0 0 16px;
}

.quote-hero p {
    max-width: 780px;
    color: var(--muted);
    font-size: 17px;
    margin: 0;
}

.quote-section {
    background: var(--bg);
}

.quote-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.quote-info,
.quote-form {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 28px;
}

.quote-info h2 {
    margin: 0 0 14px;
}

.quote-info p,
.quote-info li {
    color: var(--muted);
}

.quote-info ul {
    margin: 16px 0;
    padding-left: 20px;
}

.quote-form .form-row {
    margin-bottom: 18px;
}

.quote-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
    width: 100%;
    border: 1px solid var(--border);
    padding: 12px;
    font: inherit;
    background: #ffffff;
}

.quote-form textarea {
    resize: vertical;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    outline: 2px solid rgba(11, 122, 83, .22);
    border-color: var(--brand);
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 900px) {
    .quote-layout {
        grid-template-columns: 1fr;
    }

    .quote-hero h1 {
        font-size: 32px;
    }
    .consent-row label {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        font-weight: 400;
        line-height: 1.45;
    }
    
    .consent-row input {
        width: auto;
        margin-top: 3px;
    }
}