sectiontitle {
    text-align: left;
    width: 100%;
    text-decoration: underline;
    font-size: 1.5rem; /* text-3xl */
    line-height: 1.75rem; /* text-3xl */
    font-weight: 700;
    margin-bottom: 1rem;
    word-wrap: break-word;
    position: relative;
    display: block;
    text-align: center;
}

pagetitle {
    background-color: rgb(243, 244, 246);
    border-radius: 0.75rem; /* rounded-xl */
    padding: 2rem;
    text-align: center;
    width: 100%;
    font-size: 2.25rem;
    line-height: 2.5rem; 
    font-weight: 700;
    margin-bottom: 5rem;
    margin-top: 5rem;
    word-wrap: break-word;
    position: relative;
    display: block;
    z-index: 2;
    /* shadow-lg */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin-left: 4px;
    margin-right: 4px;
}

@media (min-width: 450px) {
    sectiontitle {
        font-size: 1.875rem; /* text-3xl */
        line-height: 2.25rem; /* text-3xl */
    }
}

@media (min-width: 768px) {
    sectiontitle {
        font-size: 2.25rem; /* md:text-4xl */
        line-height: 2.5rem; /* md:text-4xl */
        text-align: left;
    }
    pagetitle {
        font-size: 3.75rem; /* text-6xl */
        line-height: 1; /* text-6xl */
    }
}


section {
    background-color: rgb(243, 244, 246);
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 1.5rem; /* p-6 */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; /* gap-6 */
    margin-top: 5rem; /* mt-40 */
    position: relative;
    margin-left: 4px;
    margin-right: 4px;
}