/* General Body & Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #212529;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #0056b3;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    text-decoration: none;
}

.site-header .logo img {
    height: 40px;
    margin-right: 10px;
}

.site-nav a {
    color: #555;
    margin-left: 20px;
    font-size: 1rem;
    font-weight: 500;
}

.site-nav a:hover {
    color: #007bff;
    text-decoration: none;
}


/* Main Content Area */
.main-content {
    flex: 1;
    padding: 40px 0;
}

.content-wrapper {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Footer */
.site-footer {
    background-color: #343a40;
    color: #adb5bd;
    padding: 2rem 0;
    font-size: 0.9rem;
    text-align: center;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.site-footer a {
    color: #ffffff;
}

.site-footer a:hover {
    color: #ced4da;
}

.footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    text-decoration: none;
}