/* General Setup */
body {
    background-color: #333; /* Dark background like the wireframe */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: white; /* Content area background */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Header/Navigation */
header {
    background-color: #4a0000; /* Maroon background for the header area */
    color: white;
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-weight: bold;
    font-size: 1.5em;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    padding: 5px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: #6d0000;
}

/* Common Section Styles */
section {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

section:last-child {
    border-bottom: none;
}

h2 {
    color: #4a0000; /* Maroon for section titles */
    margin-bottom: 15px;
}

/* Placeholder styles for content blocks */
.text-line {
    height: 10px;
    background-color: #ccc;
    margin-bottom: 8px;
    border-radius: 2px;
}

.text-line.long { width: 90%; }
.text-line.medium { width: 70%; }
.text-line.short { width: 50%; }

.image-placeholder {
    width: 150px;
    height: 100px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
    margin-right: 20px;
    flex-shrink: 0;
}

.button {
    background-color: #4a0000;
    color: white;
    padding: 8px 15px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    margin-top: 10px;
}

.button:hover {
    background-color: #6d0000;
}