html,
    body {
        padding: 0;
        margin: 0;
        font-family: "Inter", sans-serif;
        font-weight: 400;
    }

    .cardo-bold {
        font-family: "Cardo", serif;
        font-weight: 700;
        font-style: normal;
    }

    .cardo-regular-italic {
        font-family: "Cardo", serif;
        font-weight: 400;
        font-style: italic;
    }

    .main_container {
        width: 100%;
        height: 100%;
    }

    .page_banner {
        background-color: #000000;
        color: #ffffff;
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 3rem;
    }

    .page_content {
        max-width: 900px;
        margin: 0 auto;
        padding: 1rem;
    }

    .page_content h4 {
        font-weight: 400;
        border-bottom: 1px solid gainsboro;
        padding-bottom: 1rem;
        font-size: 1.35rem;
        margin-top: 2.25rem;
    }

    .page_content p,
    .page_content ul {
        line-height: 1.5;
    }

    .page_content a {
        color: #2727ff;
        text-decoration: none;
    }