/* ------------------------------
   Global Reset & Base Styles
--------------------------------*/
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fafafa;
    color: #222;
    line-height: 1.6;
}

/* ------------------------------
   Layout Containers
--------------------------------*/
.site-header {
    text-align: center;
    margin-bottom: 20px;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ------------------------------
   Section Styling
--------------------------------*/
.section {
    margin-bottom: 2.5rem;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* ------------------------------
   List Styling
--------------------------------*/
.item-list {
    list-style: disc;
    padding-left: 40px;
    margin: 0;
}

.item-list li {
    margin-bottom: 0.6rem;
}

.item-list a {
    text-decoration: none;
    color: #003366;
    font-size: 1.1rem;
}

.item-list a:hover {
    text-decoration: underline;
}

/* ------------------------------
   Responsive Tweaks
--------------------------------*/
@media (max-width: 600px) {
    .section-title {
        font-size: 1.4rem;
    }

    .item-list {
        padding-left: 25px;
    }
}

/* -----------------------------------------
   Make Word-generated HTML readable on phones
------------------------------------------*/
@media (max-width: 600px) {

    /* Increase base text size */
    body {
        font-size: 1.15rem !important;
        line-height: 1.6 !important;
        padding: 10px !important;
    }

    /* Word often uses fixed-width tables */
    table {
        width: 100% !important;
        max-width: 100% !important;
    }

    td, th {
        display: block !important;
        width: 100% !important;
    }

    /* Word forces fixed widths on divs/spans/paragraphs */
    div, span, p {
        max-width: 100% !important;
        width: auto !important;
        font-size: 1.1rem !important;
    }

    /* Prevent horizontal scrolling */
    * {
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
}