/* General Styles */
body {
    background: #ECEFF1;
    color: rgba(0, 0, 0, 0.87);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Logo Styles */
.logo {
    font-family: 'DynaPuff', cursive;
    font-weight: 200;
    font-size: 24px;
    color: white;
    margin-right: auto;
}

/* Active Link Styles for Header */
header a.active {
    color: #FF6F00;
    font-weight: bold;
    border-bottom: 2px solid #FF6F00;
}


/* Header Styles */
header {
    background: #006994;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

header a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
}

header a:hover {
    text-decoration: underline;
}

/* Main Content Styles */
#content {
    background: white;
    max-width: 680px;
    margin: 50px auto;
    padding: 32px;
    border-radius: 3px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
h1 {
    color: white;
    font-size: 30px;
    margin: 0 0 16px;
}
h2 {
    color: #FF6F00;
    font-size: 25px;
    margin: 16px 0;
}
p {
    font-size: 16px;
    margin: 16px 0;
    line-height: 1.5;
}
a {
    color: #006994;
    text-decoration: none;
    font-weight: bold;
}
a:hover {
    text-decoration: underline;
}

/* Footer Styles */
#footer-container {
    width: 100%;
}
footer {
    background: #333333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    width: 100%; /* Ensure full width */
    box-sizing: border-box;
}
footer p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

#content {
    min-height: calc(100vh - 150px); /* Adjust the value as needed */
    box-sizing: border-box;
}
img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 20px; /* Add spacing above if needed */
}