.step__content {
    background-image: none;
}

.lead {
    text-align: justify;
}

/* h6 { */
/* font-size: 16px; */
/* } */

.text-bold {
    font-weight: 600;
}

.image-row {
    display: flex;
    flex-direction: row;
    place-content: center;
    align-items: center;
    gap: 150px;
    margin-bottom: 20px;
}

.image-container {
    text-align: center;
}

.image-row img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-row img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.image-row img.selected {
    padding: 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.caption {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}

.caption.bold {
    font-weight: bold;
}

.text-display {
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
}

@media (max-width: 768px) {
    .image-row img {
        width: 120px;
        height: 120px;
    }

    .caption {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .image-row {
        gap: 10px;
    }

    .image-row img {
        width: 100px;
        height: 100px;
    }
}

.about__right-4-text {
    font-size: 17px;
}