.header {
    background-color: transparent;
    color: #0b3954;
    padding: 20px;
    text-align: center;
    box-shadow: none;
}

.header h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    color: #0b3954;
    letter-spacing: 1px;
}

.header p {
    font-size: 17px;
    margin: 5px auto;
    max-width: 600px;
    color: #0b3954;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section { padding: 50px 40px; }

.section-title {
    color: #1a365d;
    text-align: left;
    margin-bottom: 1.5rem;
    margin-top: 0;
    font-weight: 700;
}

.section--white { background-color: #fff; }

.section--gray { background-color: #f9fafb; }

.grid-2col {
    display: grid;
    grid-template-columns: 1.33fr 1fr;
    gap: 2rem;
    place-items: center;
}

.grid-2col-backwards {
    display: grid;
    grid-template-columns: 1fr 1.33fr;
    gap: 2rem;
    place-items: center;
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}


.align-center { align-items: center; }

.section-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.subsection-text {
    font-size: 16px;
    margin-bottom: 10px;
}

.sub-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.list-bulleted {
    list-style: disc inside;
    font-size: 18px;
    margin: 10px 0;
    padding: 0;
}


.list-bulleted li { margin-top: 5px; }


.img-hover-scale {
    display: block;
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.img-hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}


.card-grid {
    row-gap: 2rem;
    column-gap: 2rem;
}

.card {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}


.icon-large {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.text-blue { color: #1a365d; }

.text-center { text-align: center; }

.text-right { text-align: right; }

/* mobile / tablet styles */

@media (max-width: 1024px) {
    .list-bulleted li { margin-top: 12px; }

    .list-bulleted li { list-style: disc outside; }
}

/* mobile styles */

@media (max-width: 767px) {
    .section { padding: 1rem; }

    .grid-2col { grid-template-columns: 1fr; }

    .grid-2col-backwards { grid-template-columns: 1fr; }

    .grid-3col { grid-template-columns: 1fr; }

    .header h1 {
        font-size: 30px;
        font-weight: bolder;
        margin: 0;
        color: #0b3954;
        letter-spacing: 1px;
    }

    .header p {
        font-size: 14px;
        margin: 5px 0;
        max-width: 600px;
        color: #0b3954;
    }

    .section-text {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .subsection-text {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .list-bulleted {
        font-size: 16px;
        margin: 10px 0;
        padding: 0;
    }
}

/*no wrap large screens*/

@media (min-width: 1024px) {
    .list-bulleted li { white-space: nowrap; }
}