/* Common styles for all pages */
:root {
    --primary-color: #333;
    --secondary-color: #666;
    --background-color: #fff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.header {
    background-color: var(--background-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 2rem;
}

.header .logo {
    height: 40px;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 2rem;
    margin-top: 2rem;
}

.footer .logo {
    height: 30px;
    filter: brightness(0) invert(1);
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin-right: 1rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.content {
    min-height: calc(100vh - 200px);
}
