.hero-section {
    padding: 60px 20px;
    padding-bottom: 100px;
}

.hero-wrapper {
    width: 100%;
    margin: 0 auto;
    background-color: #F8F8F7;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;

}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #323232;
    margin: 0;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.hero-button {
    display: inline-block;
    background-color: #768071;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    text-align: center;
    width: fit-content;
}

.hero-button:hover {
    background-color: #5f6659;
}

.hero-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 1000px) {
    .hero-container {
        position: relative;
        min-height: 70vh;
    }

    .hero-image {
        position: absolute;
        right: -330px;
    }
}

/* Tablet styles */
@media (min-width: 768px) {
    .hero-section {
        display: flex;
        align-items: center;
    }

    .hero-wrapper {
        max-width: 1300px;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .hero-content {
        flex: 1;
        gap: 24px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.7rem;
    }

    .hero-image {
        flex: 1;
    }
}


@media (max-width: 767px) {

    .hero-wrapper {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .hero-section {
        padding: 50px 15px;
        padding-top: 30px;
    }
}