body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;

    /* improved gradient */
    background: #b8d4f5; /* fallback */
    background: linear-gradient(to bottom, #9fc2ea 0%, #eaf4ff 80%);
}

/* header */
.home-header img {
    width: 100%;
    display: block;
}

.site-header {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.site-header img {
    max-width: 500px;
    width: 85%;
}

/* content */
.page {
    width: 760px;
    max-width: 760px;
    margin: 40px auto;
    padding: 0 20px;
}

abbr {
    border-bottom: 1px dotted #000;
    cursor: help;
}
.intro {
    text-align: justify;
    margin-bottom: 8px;
}

.seo-text {
    font-size: 12px;
    font-style: italic;
    color: #444;
    margin-bottom: 15px;
}

/* expandable */
details.term {
    margin: 28px 0;
}

details.term summary {
    font-size: 19px;
    font-weight: bold;
    line-height: 1.4;
}

details.term p {
    margin: 8px 0 12px 12px;   /* adds space BELOW each paragraph */
    font-style: italic;
}

/* OVERRIDE for links inside description */
details.term p a {
    display: inline-block;
    margin-top: 6px;      /* NEW: pushes links down from text */
    margin-bottom: 8px;
    font-style: normal;
}

/* links */
a {
    color: #0033cc;        /* stronger blue */
    font-weight: bold;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* bracket style */
a:before { content: "[ "; }
a:after  { content: " ]"; }


/* footer */
.footer {
    margin-top: 65px;
    padding-top: 15px;
    border-top: 1px solid #666;   /* restored + slightly darker */
}

/* center container */
.footer-inner {
    width: 760px;
    margin: 0 auto;
}

/* top row: logo left, fb right */
.footer-top {
    display: table;
    width: 100%;
}

/* left logo */
.footer-logo {
    display: table-cell;
    text-align: left;
    vertical-align: middle;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

/* right FB */
.footer-fb {
    display: table-cell;
    text-align: right;
    vertical-align: middle;
}

.footer-fb img {
    height: 40px;
    width: auto;
}

/* TEXT BLOCK BELOW */
.footer-text {
    margin-top: 10px;
    text-align: center;   /* change to left if preferred */
}

/* tagline */
.footer-tagline {
    font-size: 15px;
    font-weight: bold;
}

/* copyright */
.footer-copy {
    font-size: 11px;
    color: #333;
    margin-top: 4px;
}

/* remove brackets */
.footer a:before,
.footer a:after {
    content: "";
}

/* footer links = subtle */
.footer a {
    color: inherit;          /* same as surrounding text */
    font-weight: normal;     /* remove bold */
    text-decoration: none;   /* no underline */
}

/* optional: very subtle hover */
.footer a:hover {
    text-decoration: underline;
}

/* bottom row */
.footer-bottom {
    margin-top: 8px;
    font-size: 11px;
}

/* mobile */
@media (max-width: 768px) {

    .home-header { display: none; }

    .site-header {
        display: block;
        text-align: center;
        padding: 18px 10px 10px 10px;

        /* add contrast behind logo */
        background: rgba(255,255,255,0.85);
    }

    .site-header img {
        width: 95%;
        max-width: 420px;   /* larger */
    }
}

@media (max-width: 768px) {

    .footer-inner {
        width: 100%;
        padding: 0 15px;
    }

    .footer-top {
        display: block;
        text-align: center;
    }

    .footer-logo,
    .footer-fb {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .footer-logo img,
    .footer-fb img {
        height: 36px;   /* slightly smaller for mobile */
    }

    .footer-text {
        text-align: center;
        margin-top: 5px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-copy {
        font-size: 11px;
    }
}