/* General Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    margin: 0;
    background-color: #F9F8EA; /* Light Cream */
    color: #1B1C1F; /* Dark Gray/Off-Black */
    line-height: 1.6;
    font-size: 16px;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #D37129; /* Featured Orange */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #EFEFEF; /* Light Gray */
    margin-bottom: 30px;
}

.logo img {
    max-height: 60px;
    display: block;
}

.site-title-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.site-title a {
    font-size: 2em;
    font-weight: bold;
    color: #1B1C1F; /* Dark Gray/Off-Black */
    text-decoration: none;
    margin-bottom: 5px; /* Space between title and nav */
}

.site-title a:hover {
    color: #D37129;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav li {
    margin-left: 25px;
}

.nav a {
    font-size: 1.1em;
    font-weight: 500;
    color: #1B1C1F; /* Dark Gray/Off-Black */
}

.nav a.active,
.nav a:hover {
    color: #D37129; /* Featured Orange */
    text-decoration: none;
}

/* Main Content */
main {
    padding-bottom: 40px;
}

.content-section h2 {
    font-size: 1.8em;
    color: #1B1C1F;
    margin-bottom: 20px;
    border-bottom: 2px solid #D37129; /* Featured Orange */
    padding-bottom: 10px;
}

.content-section h3 {
    font-size: 1.4em;
    color: #1B1C1F;
    margin-top: 30px;
    margin-bottom: 10px;
}

.content-section p {
    margin-bottom: 1em;
    font-size: 1rem;
}

.content-section ul {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
    margin-bottom: 1em;
}

.content-section li {
    margin-bottom: 0.5em;
}

.content-section strong {
    font-weight: 600; /* Slightly bolder for emphasis */
    color: #1B1C1F;
}

.last-updated {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid #EFEFEF; /* Light Gray */
    font-size: 0.9em;
    color: #555; /* Slightly lighter than main text */
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo img {
        margin-bottom: 15px;
    }

    .site-title-nav {
        align-items: center;
    }
    
    .site-title a {
        font-size: 1.8em;
    }

    .nav ul {
        justify-content: center;
    }

    .nav li {
        margin: 0 15px;
    }

    .content-section h2 {
        font-size: 1.6em;
    }

    .content-section h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .site-title a {
        font-size: 1.6em;
    }
    .nav a {
        font-size: 1em;
    }
    .nav li {
        margin: 0 10px;
    }
} 