/* General Page Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f1ea; /* light tan background */
    color: #2d2d2d; /* dark gray text */
    margin: 0;
    padding: 20px;
    line-height: 1.8;
}

/* Headings */
h1 {
    font-size: 3em;
    color: #003366; /* dark blue */
    text-align: center;
    margin-bottom: 10px;
}

h2 {
    font-size: 2em;
    color: #004d4d;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    margin-top: 40px;
}

h3 {
    font-size: 1.5em;
    color: #006666;
    margin-top: 0;
}

/* Paragraphs */
p {
    font-size: 1.1em;
    color: #333333;
}

/* Tables */
table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

td {
    vertical-align: top;
    padding: 15px;
}

.activities-table td {
    border: 1px solid #bbbbbb;
    background-color: #ffffff;
}

/* Images */
img {
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

/* Links */
a {
    color: #005580;
    text-decoration: none;
    font-weight: bold;
}

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

/* Bio and Activities Sections */
.bio, .activities {
    padding: 20px;
    background-color: #e8f0f2; /* light blue-gray background */
    border-radius: 8px;
    box-shadow: 1px 1px 6px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

/* Responsive tweaks (optional) */
@media (max-width: 768px) {
    table, tr, td {
        display: block;
        width: 100%;
    }

    img {
        width: 100% !important;
        height: auto;
    }
}