/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/* === GLOBAL PAGE STYLES === */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f8f8f8;
    color: #111;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    font-weight: 800;
    color: #000;
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 400;
    color: #333;
}

.sections {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 40px 0;
}

@media (min-width: 700px) {
    .sections {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.box {
    background: #fff;
    border: 2px solid #000;
    padding: 25px;
    text-align: left;
    transition: 0.2s;
}

.box:hover {
    background: #000;
    color: #fff;
}

.box h3 {
    margin-top: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.box p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.box a {
    font-weight: 700;
    text-decoration: none;
    color: #000;
}

.box:hover a {
    color: #fff;
}

footer {
    margin-top: 60px;
    padding: 30px;
    border-top: 2px solid #000;
    font-size: 0.9rem;
    text-align: center;
    background: #fff;
}

.email-image {
    margin-top: 20px;
    max-width: 100%;
    border: 2px solid #000;
}

/* SUBPAGE TEXT LAYOUT */

.page-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
}

.page-content h1 {
    text-align: left;
    margin-bottom: 20px;
}

.page-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    font-weight: 700;
    text-decoration: none;
    color: #000;
}

.back-link:hover {
    text-decoration: underline;
}
.callout {
    max-width: 800px;
    margin: 50px auto 20px auto;
    text-align: center;
}

.callout h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.callout p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.callout h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
}
a {
    color: #000;
    text-decoration: none;
    font-weight: 700;
}

a:hover {
    text-decoration: underline;
    color: #000;
}

