.pdf-section-header {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
    display: flex;
    align-items: center;
}

.pdf-section-header i {
    margin-right: 12px;
    color: var(--theme-color);
}

.pdf-form-group {
    margin-bottom: 5px;
}

.form-control, .form-select {
    font-size: 14px;
}

@media (max-width: 767px) {
    .pdf-section-header {
        font-size: 18px;
        margin-top: 30px;
    }

    .form-control, .form-select {
        height: 50px !important; 
        font-size: 16px !important; 
        padding: 10px 15px;
        border-radius: 8px;
    }

    textarea.form-control {
        min-height: 100px !important;
    }

    .claimant-card {
        margin-bottom: 20px; 
    }
}

.claimant-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.claimant-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.claimant-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    display: block;
}

