.content-section {
    width: 100%;
    max-width: 65%; /* Set your desired max width */
    margin: 0 auto;
    padding: 90px 50px;
}
.row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.image-box {
    width: calc(33.33% - 20px); /* Adjust the width as needed, considering margin */
    margin-right: 20px;
    position: relative;
}
.image-box a {
    text-decoration: none;
    color: inherit;
}
.image-box img {
    width: 100%;
    height: auto;
    display: block;
}
.image-box p {
    margin-top: 10px;
    font-size: 16px; /* Adjust font size as needed */
    height: 60px; /* Set your desired fixed height */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal; /* Allow text to wrap to the next line */
}

@media screen and (max-width: 415px) {
    .content-section {
        margin: 0 auto;
        padding: 50px 50px;
        text-align: center;

    }
    .row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: center;
    }
    .image-box {
        width: 290px;
        margin-right: 0px;
        position: relative;
    }
}