.page-hero {
    background-image: url(../images/about-us.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    color: white;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.page-hero h1 {
    font-size: 36px;
    text-align: center;
}

.page-hero p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.page-hero .action-btns {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.page-hero .action-btns .register-btn {
    border-radius: 4px;
    background: #F6B500;
    padding: 12px;
    width: 130px;
    border: 1px solid transparent;
    outline: none;
    text-align: center;
}

.page-hero .action-btns .register-btn:hover {
    background: #b08100;
}

.page-hero .action-btns .demo-btn {
    border-radius: 4px;
    background: rgba(99, 112, 120, 0.5);
    padding: 12px;
    width: 130px;
    color: white;
    border: 1px solid transparent;
    outline: none;
    text-align: center;
}

.page-hero .action-btns .demo-btn:hover {
    border: 1px solid #6c8595;
}

/* ABOUT US */
.about-us {
    padding: 64px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-us h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.about-us img {
    border-radius: 15px;
}

/* MISSION AND VISION */
.mandv {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}

.mandv .mission {
    background: #1E1E1E;
    color: white;
    flex: 1;
    padding: 24px;
}

.mandv .mission em {
    font-size: 32px;
    font-weight: 900;
    color: #F6B500;
    line-height: 1;
}

.mandv .mission p {
    font-size: 28px;
}

.mandv .mission h2 {
    font-size: 12px;
    font-weight: 400;
    margin-top: 32px;
}

.mandv .vision {
    background: #625d4c;
    color: white;
    flex: 1;
    padding: 24px;
}

.mandv .vision em {
    font-size: 32px;
    font-weight: 900;
    color: #F6B500;
    line-height: 1;
}

.mandv .vision p {
    font-size: 28px;
}

.mandv .vision h2 {
    font-size: 12px;
    font-weight: 400;
    margin-top: 32px;
}

/* OFFER */
.offer {
    padding: 64px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.offer h2 {
    text-align: center;
    font-size: 28px;
}

.offer .offers-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.offer .offer-item {
    display: flex;
    align-items: start;
    gap: 16px;
}

.offer .offer-item i {
    font-size: 32px;
    background: #F6B500;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    min-width: 50px;
}

@media(min-width: 992px) {

    /* PAGE HERO */
    .page-hero {
        padding: 48px;
        align-items: start;
        text-align: left;
    }

    .page-hero h1 {
        font-size: 44px;
        text-align: left;
        max-width: 50%;
    }

    .page-hero p {
        font-size: 18px;
        text-align: left;
    }

    .page-hero .action-btns {
        flex-direction: row;
    }

    /* FOREX */
    .about-us {
        padding: 80px 48px;
        flex-direction: row;
        align-items: center;
        gap: 32px;
    }

    .about-us img {
        width: 50%;
    }

    /* MISSION AND VISION */
    .mandv {
        flex-direction: row;
    }

    /* OFFER */
    .offer {
        padding: 80px 48px;
    }

    .offer .offers-list {
        flex-direction: row;
    }

    .offer .offer-item {
        flex-direction: column;
        flex: 1;
        gap: 16px;
        text-align: center;
    }

    .offer .offer-item i{
        margin-inline: auto;
    }
}