/* #region Global */
    .page-title {
        font-size: 50px;
    }
    .page-description {
        width: 100%;
    }
    .footer {
        margin-top: 0;
    }
/* #endregion */


/* #region Section 1 */
    .area .section-1 .content {
        /* font-size: 16px; */
        line-height: 28px;
        color: var(--gray);
    }
/* #endregion */


/* #region Section 2 */
    .area .section-2 {
        background-color: var(--black);
        padding: 30px 0;
    }
    .area .section-2 .advertise {
        align-items: center;
    }
    .area .section-2 .advertise .text {
        font-size: 32px;
        color: var(--white);
    }
    .area .section-2 .advertise .text:last-child {
        padding-bottom: 0;
    }
    .area .section-2 .advertise .advertise-button {
        background-color: var(--red);
        color: var(--white);
        font-size: 18px;
        font-weight: 500;
        width: 200px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: auto;
        border-radius: 4px;
        transition: all 0.3s;
        &:hover {
            background-color: var(--light_black);
            transition: all 0.3s;
        }
    }
/* #endregion */