html, body {
    font-family: 'Roboto Flex';
    display: block;
    margin: 0;
    height: 100%;
    background-color: #ffffff;
}

/*---------------------------------------------------------------------------------------*/

.c-button-orange {
    border-radius: 8px;
    padding: 8px 24px;
    background-color: #FFAD01;
    margin-top: 15px;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
}

    .c-button-orange:hover {
        background-color: #ffcf6f;
    }

.c-button-orange-sm {
    border-radius: 8px;
    padding: 4px 10px;
    background-color: #FFAD01;
    font-size: 16px;
    font-weight: 700;
}

    .c-button-orange-sm i {
        margin: 0 5px 0 0;
    }

    .c-button-orange-sm:hover {
        background-color: #ffcf6f;
    }

.c-button-green-sm {
    border-radius: 8px;
    padding: 4px 10px;
    background-color: #b8e789;
    font-size: 16px;
    font-weight: 700;
}

    .c-button-green-sm i {
        margin: 0 5px 0 0;
    }

    .c-button-green-sm:hover {
        background-color: #b8e789;
    }

.c-button-white {
    border-radius: 8px;
    padding: 8px 24px;
    background-color: #ffffff;
    margin-top: 15px;
    border: 2px solid #9FA8C6;
    width: 100%;
    font-size: 20px;
    font-weight: 700;
    color: #05164C;
}

    .c-button-white:hover {
        background-color: #f0f0f0;
        border: 2px solid #9FA8C6;
    }

.c-button-white-sm {
    border-radius: 8px;
    padding: 4px 10px;
    background-color: #f0f0f0;
    font-size: 16px;
    font-weight: 700;
}

    .c-button-white-sm i {
        margin: 0 5px 0 0;
    }

    .c-button-white-sm:hover {
        background-color: #f0f0f0;
    }

.scroll-button {
    position: sticky;
    bottom: 10px;
    left: 90%;
    transform: translateX(-50%);
    background: #007bff;
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    opacity: 0.7;
}

.c-red {
    color: #ff5555;
}

.c-green {
    color: #44bb44;
}

@media screen and (max-width: 450px) {
    .header {
        border-radius: 0;
    }

    .c-button-white {
        padding: 8px 8px;
        font-size: 6.5vw;
        margin-top: 10px;
    }

    .c-button-orange {
        padding: 8px 8px;
        font-size: 6.5vw;
        margin-top: 10px;
    }
}

