.text-block {
    text-align: center;
    margin: 0px 200px 60px 200px;
}

.text-block h2 {
    font-size: 48px;
    margin-bottom: 50px;
}

.intro {
    line-height: 1.8;
    margin: 0 auto;
    color: #cfcfcf;
}

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

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.bottom-row .left-text .intro a:hover {
    color:#A1845A;
}
.bottom-row .left-text .intro a {
    text-decoration: none;color:#CFCFCF;
}

.right-map {
    flex: 1;
    text-align: right;
    opacity: 0;
    transform: translateX(100px);
    /* move from right */
    animation: slideInRight 1s ease forwards;
    animation-delay: 0.6s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.left-text p {
    text-align: justify;
}
.right-map img {
    width: 100%;
    max-width: 600px;
    height: auto;
}
/* responsive */
@media (max-width: 1190px) {
    .bottom-row {
        flex-direction: column;
        text-align: center;
    }

    .right-map {
        text-align: center;
    }
    .left-text {
        text-align: justify;
    }
    .text-block {
        text-align: center;
        margin: 0px 2% 40px 2%;
    }

}

@media (max-width: 768px) {
    .text-block {
        text-align: center;
        margin: 0px;
        font-size: 20px;
        margin-bottom: 47px;
    }

    .left-text {
        font-size: 20px;
    }
}
