/* ====== Global Page Styling ====== */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7f5; /* very light green-tinted background */
    color: #1a1a1a; /* dark text for readability */
    line-height: 1.6;
}

/* ====== Header ====== */
#header {
    background-color: #0a5724; /* deep academic green */
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 4px solid #0d6a2b;
}

#header img {
    margin-right: 10px;
}

#header h2 {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 28px;
}

/* ====== Main Content ====== */
#content {
    width: 80%;
    max-width: 900px;
    margin: 25px auto;
    padding: 20px;
    background: white;
    border: 1px solid #c6dac8;
    border-radius: 4px;
}

/* Paragraph styling */
p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* ====== Links ====== */
a {
    color: #0a5724;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* ====== Picture Section ====== */
#picture {
    float: right;
    margin: 10px;
    text-align: center;
}

#picture img {
    border: 3px solid #0a5724;
    border-radius: 4px;
    max-width: 100%;
    height: auto;
}

/* ====== Lists ====== */
ul {
    margin-top: 5px;
}

li {
    margin-bottom: 8px;
}

/* ====== Footer ====== */
#footer {
    background-color: #0a5724;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    border-top: 4px solid #0d6a2b;
}

#footer h6 {
    margin: 0;
    font-size: 13px;
}

/* Clear floats when needed */
br[clear="right"] {
    display: block;
    clear: right;
}
