.home-hero {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 2rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

.home-left {
    flex: 0 0 auto;
    padding: 0 0 30px 30px;
}

.home-image-wrapper {
    position: relative;
    width: 460px;
}

.home-image-wrapper::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    background-color: #d4b896;
    z-index: 0;
}

.home-image-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
}

.home-right {
    flex: 1;
    padding-top: 1rem;
}

.home-right h2 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.home-right p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.home-cta {
    display: block;
    text-align: center;
    border: 2px solid #888;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--text-color);
    margin-top: 2rem;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.home-cta:hover {
    background-color: var(--background-light);
}

@media (min-width: 769px) {
    .home-left {
        padding-top: 2.5rem;
    }
}

@media (max-width: 768px) {
    .home-hero {
        flex-direction: column;
    }

    .home-image-wrapper {
        width: 100%;
    }

    .home-left {
        width: 100%;
        padding: 0 0 20px 20px;
    }
}
