
.title-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
    margin-top: 100px;
    
}

.title-section .image-container {
    position: relative;
    width: 100%;
    margin-left: 10%;
    margin-right: 10%;
    overflow: hidden;
}

.title-section .image-container img {
    width: 100%;
    height: 350px;
    object-fit: cover; 
    object-position: center center; 
    display: block;
}

