.page-hero {
    background-image: url(../images/what-is-leverage.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;
}

/* FOREX */

.forex {
    padding: 64px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.forex h2 {
    font-size: 28px;
    text-align: center;
}

.forex p {
    text-align: center;
    font-size: 14px;
}

.divider {
    padding-inline: 24px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.forex-why {
    padding: 64px 24px;
    text-align: center;
}

.forex-why h2 {
    font-size: 28px;
    font-weight: 600;
}

.forex-why p {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}

.forex-why .whys-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.forex-why .whys-list .why-item {
    background-image: url(../images/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;
    padding: 16px;
}

.forex-why .whys-list .why-item img {
    width: 100px;
    height: 100px;
    margin-block: 30px;
}

.forex-why .whys-list .why-item .why-item-content {
    background: #F0F6FE;
    border-radius: 15px;
    padding: 16px;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.forex-why .whys-list .why-item .why-item-content h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

@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 */
    .forex {
        padding: 80px 48px;
    }

    .divider {
        padding-inline: 48px;
    }

    /* FORX WHY */
    .forex-why {
        padding: 80px 48px;
    }

    .forex-why p {
        max-width: 70%;
        margin-inline: auto;
    }

    .forex-why .whys-list {
        flex-direction: row;
        justify-content: space-between;
    }

    .forex-why .whys-list .why-item {
        flex: 1;
    }
}