.hero-image {
    width: 100%;
    height: 600px;
    background-image: url('images/dog-walking.jpg');
    background-size: cover;
    background-position: center -67px;
}

.main-container {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 20px auto;
}

.content {
    flex: 1;
    padding: 20px;
    background-color: var(--background-color);
    border-radius: 5px;
    text-align: justify;
}

.sidebar {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.hero-image-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .hero-image {
        display: none;
    }

    .hero-image-mobile {
        display: block;
    }

    .main-container {
        flex-direction: column;
        align-items: center;
    }
    .sidebar {
        width: 100%;
        text-align: center;
    }
    .sidebar img {
        max-width: 80%;
    }
}
