.step-title-bold {
    font-size: 1.05rem;
    /* Down from 1.15rem */
    /* Further reduced */
    font-weight: 800;
    color: #000;
    line-height: 1.25;
    text-align: center;
    margin-bottom: 5px;
}

.purple-highlight {
    color: #4A148C;
}

.option-card.has-image {
    padding: 0;
    min-height: 48px;
    /* Flexible height */
    height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    /* Slightly tighter radius */
}

.option-img-container {
    width: 48px;
    min-height: 48px;
    height: 100%;
    /* Fill the container height */
    background: #e0e0e0;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.option-card.has-image .option-text {
    padding: 8px 12px;
    /* Added vertical padding */
    font-weight: 600;
    font-size: 0.75rem;
    /* Down from 0.85rem */
    color: #333;
}

/* Ensure checkbox is still right aligned */
.option-card.has-image::after {
    margin-right: 15px;
}

/* Adjust subtitle if present */
p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}