/* Investigative Journalism Theme */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #d32f2f;
    --bg-color: #f9f9f9;
    --text-color: #333333;
    --light-bg: #ffffff;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

h1, h2, h3, h4, h5 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem 0;
    border-bottom: 4px solid var(--secondary-color);
}

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

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: white;
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--secondary-color);
}

main {
    padding: 3rem 0;
}

.hero {
    background-color: var(--light-bg);
    padding: 3rem;
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--secondary-color);
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero .meta {
    font-family: sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.content-section {
    background: var(--light-bg);
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.alert-box {
    background-color: #fff3f3;
    border-left: 4px solid var(--secondary-color);
    padding: 1rem;
    margin: 1.5rem 0;
    font-family: sans-serif;
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    font-family: sans-serif;
    font-size: 0.9rem;
    margin-top: 3rem;
}

.btn {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-family: sans-serif;
    font-weight: bold;
    margin-top: 1rem;
}

.btn:hover {
    background: #b71c1c;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}