.life-style-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 80px;
    /*margin-right: 40px;*/
}

.highlight {
    color: #A1845A;;
    font-weight: bold;
}

.left-text-block {
    flex: 1;
    line-height: 1.8;
    color: #d1d1d1;
    opacity: 0;
    transform: translateX(-100px);
    /* move from left */
    animation: slideInLeft 1s ease forwards;
    animation-delay: 0.3s;
}

.right-text-block {
    flex: 1;
    text-align: left;
    font-size: 18px;
}

.right-text-block p {
    line-height: 1.8em;
 
}

.left-text-block h1 {
    font-size: 50px; 
    color: white;
    line-height: 1.2em;
}

@media (max-width: 992px) {
    .life-style-section {
        flex-direction: column;
        text-align: center;
    }

    .right-text-block {
        text-align: center;
    }
    .left-text-block h1 {
        font-size: 32px;
        text-align:left;
    }
    .right-text-block p {
        line-height: 1.8em;
        text-align: left;
    }
}