.enrollment-container {
    text-align: center;
    padding: 2em 5%;
    line-height: 1.5;
}

.enrollment-container a {
    color: #185FA5;
    font-weight: 600;
    text-decoration: none;
}

.enrollment-interest-section p{
    font-size: 1.125rem;
}

.paperwork-section {
    background: linear-gradient(to right, #185FA5, #0D3F6E);
    color: #FFFFFF;
}

h2 {
    font-family: "Caveat", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    margin: 0;
}

.enrollment-forms {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-transform: uppercase;
    gap: 0.75em;
    margin-top: 1.5em;
}

.enrollment-forms a {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #FFFFFF;
    color: #185FA5;
    padding: 1em 2em;
    border-radius: 8px;
    font-weight: 600;
}

.enrollment-forms a:hover, .enrollment-forms a:focus {
    background-color: #F9FAFB;
    opacity: 0.8;
}

.family-h2 {
    color: #185FA5;
}

.purple-section {
    background: linear-gradient(to bottom right, #FFF9C4, #FFF176);
    color: #111827;
}

.medication-section h2 {
    color: #185FA5;
}

@media (min-width: 768px) {
    .enrollment-forms {
        flex-direction: row;
        gap: 1em;
    }

    .enrollment-forms a {
        margin: 0;
    }
    
}