.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1500px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
    margin-top: 5%;
    /* border: 1px solid #ccc; */
}

.description-section {
    width: 800px;
    height: 600px;
    padding: 20px;
    box-sizing: border-box;
    /* background-color: #e3f2fd; */
}
.description-section h6 {
    font-size: 20px;
}

.image-section {
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #c8e6c9; */
}

.image-section img {
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 768px) {
    .description-section,
    .image-section {
        width: 100%;
        height: auto;
    }
}

.image-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    margin-bottom: 5%;
}

.image-container img {
    width: 1500px;
    height: auto;
    max-width: 1500px;
    max-height: 1500px;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .image-container img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .image-container img {
        max-width: 100%;
        height: auto;
    }
}
