.model-section-div {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: space-between;

}
/* Individual model-image Styling */
.model-image {
    /* background-color: red;*/
    /*border: 1px solid #ddd;*/
    /* border-radius: 8px;*/
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
    overflow: hidden;
    text-align: center;
    width: calc(33.33% - 16px);
    transition: transform 0.3s ease;
}

.model-image:hover {
    transform: translateY(-5px);
}

.model-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /*  border-bottom: 1px solid #ddd;*/
}

.model-image h3 {
    margin: 16px 0 8px;
    font-size: 18px;
    color: #333;
}

.model-image p {
    margin: 0 16px 16px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
.model-image p {
    margin-top:30px;
}
.model-image a {
    color:#fff;
    padding: 10px 20px;
    background-color: #9d8470;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;


}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .model-image {
        width: 100%; /* One card per row on smaller screens */
    }
}