/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    background-color: #1a1a1a;
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

/* Header styles */
header {
    margin-bottom: 20px;
}

h1 {
    position: absolute;
    top: 20%;
    left: 30px;
    transform: translateY(-50%);
    font-size: 2.5rem;
    font-weight: normal;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.banner-container {
    position: relative;
    width: 100%;
    max-height: 150px;
}

.banner {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    display: block;
}

.banner-subtitle {
    position: absolute;
    top: 40%;
    left: 40px;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.intro h2 {
    color: #e8be5d;
    /* text-decoration: underline;  */
}

.intro li {
    margin-left: 2em;
}

.intro a {
    color: #9db7fc;
}

.intro p {
    font-size: 1.0rem;
    margin-bottom: 10px;
}

/* Container for content and sidebar */
.container {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 20px;
}

/* Main content */
.content {
    flex: 3;
}

/* Sidebar (nav links) */
.sidebar {
    flex: 1;
    min-width: 200px;
    background-color: #1c2526; /* Dark blue */
    padding: 15px;
}

.sidebar h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    margin: 15px 0;
}

.sidebar a {
    color: #cccccc; /* Light grey */
    /* text-decoration: none; */
    font-size: 1.1rem;
}

.sidebar a:hover {
    color: #eeeeee; /* Lighter grey for hover */
    text-decoration: underline;
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .sidebar {
        min-width: 100%;
        text-align: center;
    }

    .sidebar h2 {
        font-size: 1.2rem;
    }

    h1 {
        font-size: 1.5rem;
        left: 15px;
        top: 25%;
    }

    .banner-subtitle {
        font-size: 0.9rem;
        left: 15px;
        top: 55%;
    }

    .intro p {
        font-size: 1rem;
    }

    .banner {
        max-height: 100px;
    }

    .banner-container {
        max-height: 100px;
    }

    body {
        padding: 15px;
    }
}