.container {
    display: flex;
    align-items: center;
    max-width: 80%;
    margin: 50px auto;
    padding: 20px;

}

.image-section {
    flex: 1;
    margin-right: 30px;
    border: 0.5rem solid black;
}

.image-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.text-section {
    flex: 2;
}

h2 {
    margin-bottom: 20px;
    font-size: 32px;
}

p {
    line-height: 1.6;
}