.policies-container {
    display: flex;
    justify-content: center;
    min-height: calc(100% - 4.15rem);
}

.policies-content {
    width: 40%;
    padding: 64px 32px;
    height: 100%;
}

.policies-content h1 {
    font-weight: 900;
    font-size: 3rem;
    margin-bottom: 32px;
    color: var(--text-blue);
}

.policies-content h2 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-blue);
    margin: 32px 0;
}

.policies-content p.subtitle {
    margin-bottom: 32px !important;
}

.policies-content p {
    font-size: 1.2rem;
    margin-bottom: 16px !important;
}

.policies-content ul li {
    font-size: 1.2rem;
}

.policies-content a {
    color: var(--vp-blue);
    text-decoration: none;
}

@media screen and (min-width: 700px) and (max-width: 1000px) {
    .policies-content {
        width: 70%;
    }
}

@media screen and (max-width: 700px) {
    .policies-content {
        width: 100%;
    }
}