.page-hero {
    background-image: url(../images/contact-us.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    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;
}

/* CONTACT US */
.contact-us {
    padding: 64px 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-us h2 {
    font-size: 28px;
    text-align: center;
}

.contact-us .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-us .contact-item {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 15px;
    padding: 16px;
    color: rgba(0, 0, 0, 0.7);
}

.contact-us .contact-item h3 {
    margin-bottom: 8px;
}

.contact-us .contact-item a {
    color: #F6B500;
}

@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;
    }

    /* CONTACT US */
    .contact-us{
        padding: 80px 48px;
    }

    .contact-us .contact-cards{
        flex-direction: row;
        gap: 32px;
    }

    .contact-us .contact-item{
        flex: 1;
        padding: 32px;
    }
}