.clims-section {
    background: var(--white);
}

.form_bg {
    background: var(--cream);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}


.alert-info {
    background-color: var(--white) !important;
    border: 1px solid var(--border) !important;
    border-left: 5px solid var(--red) !important;
    padding: 20px !important;
    margin-bottom: 35px !important; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.alert-heading {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
}

.pdf-section-header {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
    font-family: var(--sans);
    letter-spacing: 0.5px;
}
.pdf-section-header:first-of-type {
    margin-top: 0;
}

.pdf-form-group { 
    margin-bottom: 15px; 
}

.form-control {
    font-size: 14px;
    color: var(--text);
    border: 1px solid var(--gray);
    background: var(--white);
    transition: .25s;
    height: 44px;
    border-radius: 6px;
}
select.form-control { 
    height: 44px; 
}

.form-control:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1); 
    outline: none;
}
.form-control::-webkit-input-placeholder { color: var(--muted); }
.form-control:-moz-placeholder { color: var(--muted); opacity: 1; }
.form-control::-moz-placeholder { color: var(--muted); opacity: 1; }
.form-control:-ms-input-placeholder { color: var(--muted); }

.witness-card, .claimant-card {
    background: var(--white); 
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: .25s;
    box-shadow: 0 2px 5px rgba(10, 10, 12, 0.04);
}
.witness-card:hover, .claimant-card:hover {
    border-color: var(--red);
    box-shadow: 0 5px 15px rgba(200, 16, 46, 0.08);
}

.claimant-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    display: block;
    font-family: var(--sans);
    text-transform: uppercase;
}

#towingInfo {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border);
}
input[type="checkbox"] {
    accent-color: var(--red); 
    transform: scale(1.2); 
    vertical-align: middle;
}


@media (max-width: 767px) {
    .form_bg {
        padding: 20px;
    }
    .pdf-section-header { 
        font-size: 16px; 
        margin-top: 25px; 
    }
    .form-control { 
        height: 48px !important; 
        font-size: 16px !important; 
        padding: 10px 15px; 
    }
    textarea.form-control { 
        min-height: 100px !important; 
    }
}