/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #004080;
    color: #ffffff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #e8491d 3px solid;
}

header h1 {
    text-align: center;
    margin: 0;
}

header p {
    text-align: center;
    font-size: 18px;
}

/* Navigation Styles */
nav {
    position: fixed;
    top: 145px; /* Adjust based on header height */
    left: 0;
    width: 100%;
    z-index: 999;
    background: #e0e0e0;
    color: #333333;
}

nav ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #333333;
    text-decoration: none;
    font-weight: bold;
}

/* Main Content Styles */
main {
    margin-top: 200px; /* Adjust based on header + nav height */
    margin-bottom: 60px; /* Adjust based on footer height */
    padding: 20px 0;
}

section {
    scroll-margin-top: 200px;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
}

section h2 {
    text-align: center;
    color: #004080;
}

section p, section ul {
    font-size: 18px;
    line-height: 1.6;
}

section ul {
    list-style-type: square;
    margin: 20px;
}

/* Footer Styles */
footer {
    bottom: 0;
    left: 0;
    width: 100%;
    background: #333333;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
}

/* Main Content Styles */
main h2 {
    color: #004080;
    margin-top: 30px;
}

main ul {
    list-style-type: disc;
    margin-left: 40px;
}

main li {
    margin-bottom: 10px;
}

main p {
    font-size: 16px;
    line-height: 1.6;
}

a {
    color: #004080;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.highlight {
    color: #007bff; /* Blue color for emphasis */
    font-weight: bold;
    text-decoration: underline;
}

.story-header {
    cursor: pointer;
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}
.story-header:hover {
    background-color: #e9e9e9;
}
.story-content {
    display: none;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 3px solid #004080;
    margin-bottom: 20px;
}
.story.active .story-content {
    display: block;
}
.story.active .story-header {
    background-color: #e0e0e0;
}

/* LinkedIn Icon Styles */
#contact a {
    color: #0077b5; /* LinkedIn blue */
    text-decoration: none;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#contact a:hover {
    text-decoration: underline;
}

/* Ensure the footer stays at the bottom */
html, body {
    height: 100%; /* Make the HTML and body take up the full height of the viewport */
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* Allow the main content to grow and take up available space */
}

footer {
    position: relative; /* Remove fixed positioning for job.html */
}