.content-section {
    width: 100%;
    margin: 0 auto;
    max-width: 90%;
    padding: 50px 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 */
}
#back-to-top-button {
    display: none;
}

@media screen and (max-width: 500px) {
    .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;
    }

    #back-to-top-button {
        display: none;
        position: fixed;
        bottom: 40%;
        right: 20px;
        background-color: #007bff;
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        text-align: center;
        font-size: 24px;
        line-height: 40px;
        cursor: pointer;
        box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    }
    #back-to-top-button:hover {
        background-color: #0056b3;
    }



}