/* =========================
   ABOUT PAGE
========================= */

.about-page {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

.about-content {
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 12px;
    padding: 45px 55px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    border-top: 6px solid #003366;
}

.about-content h1 {
    text-align: center;
    color: #003366;
    font-size: 2.4rem;
    margin-bottom: 30px;
    font-family: "Merriweather", serif;
}

.about-content p {
    color: #444;
    font-size: 1.08rem;
    line-height: 1.9;
    margin-bottom: 22px;
}

.about-content p:first-of-type {
    font-size: 1.18rem;
    font-weight: 600;
    color: #003366;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-content strong {
    color: #003366;
}

.about-content hr {
    border: none;
    height: 1px;
    background: #e6e6e6;
    margin: 35px 0;
}

/* Mission Statement */

.about-content .mission {
    background: #f5f9fd;
    border-left: 5px solid #003366;
    padding: 20px 25px;
    border-radius: 8px;
    margin: 35px 0;
}

.about-content .mission h2 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #003366;
    font-size: 1.35rem;
}

.about-content .mission p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Mobile */

@media (max-width: 768px) {

    .about-page {
        padding: 25px 15px;
    }

    .about-content {
        padding: 30px 22px;
    }

    .about-content h1 {
        font-size: 2rem;
    }

    .about-content p {
        font-size: 1rem;
        line-height: 1.75;
    }

}
