.embark-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding-top:20px;
}

.left-images {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.left-images img:first-child {
    width: 288px;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

.left-images img:last-child {
    width: 290px;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

.left-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.content small {
    display: block;
    color: #A1845A;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
}

.content h1 {
    font-family: "Marcellus", serif;
    font-size: 54px;
    line-height: 1.2;
    margin: 0 0 20px;
}

.content p {
    font-size: 18px;
    color: #CFCFCF;
    margin-bottom: 40px;
    line-height: 1.6;
}

.content p strong {
    color: #A1845A;
    font-weight: 600;
}

.stats {
    display: flex;
    gap: 60px;
    /* more gap between two stats */
    margin-top: 20px;
}

.stat h2 {
    font-size: 69px;
    /* much bigger 10+ and 57K */
    margin: 0;
    font-weight: bold;
    color: #ffffff;
    font-family: sans-serif;
}

.stat p {
    font-size: 18px;
    color: #CFCFCF;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .embark-section {
        flex-direction: column;
        /* padding: 30px 40px; */
    }

    .content h1 {
        font-size: 30px;
    }

    .stats {
        justify-content: center;
        display: block;
        text-align: center;
        font-family: sans-serif;
    }

    .left-images {
        flex-direction: row;
        display: block;
    }

    .left-images img:first-child {
        margin-bottom: 20px;
    }

    .left-images img:first-child,
    .left-images img:last-child {
        width: 100%;
        height: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1094px) {
    .embark-section {
        flex-direction: column;
        /* padding: 30px 50px; */
    }

    .content h1 {
        font-family: "Marcellus", serif;
        font-size: 36px;
        line-height: 1.2;
        margin: 0 0 20px;
    }

    .content {
        max-width: 100%;
    }

    .stats {
        display: flex;
        justify-content: center;
        gap: 128px;
        margin-top: 50px;
    }

    .stat {
        text-align: center;
    }
}