/* --- GLOBAL STYLES --- */
:root { --primary: #b71c1c; --dark: #2c3e50; --light: #f4f4f4; --white: #ffffff; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: sans-serif; }
body { background-color: var(--light); line-height: 1.6; color: #333; display: flex; flex-direction: column; min-height: 100vh;}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

header { background: var(--white); box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
nav { max-width: 1200px; margin: 0 auto; padding: 1rem 20px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: bold; color: var(--primary); text-transform: uppercase; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { font-weight: 600; color: var(--dark); }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
footer { background: var(--dark); color: var(--white); text-align: center; padding: 20px; margin-top: auto; }

/* --- CULTURE SPECIFIC STYLES --- */
.container { max-width: 900px; margin: 40px auto; padding: 0 20px; }
h1 { text-align: center; margin-bottom: 40px; color: var(--dark); }

.culture-section {
    background: var(--white);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.culture-section h2 {
    color: var(--primary);
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.content-wrap {
    display: flex;
    gap: 30px;
    align-items: center;
}

.content-wrap img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

/* Alternate layout class */
.reverse .content-wrap {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .content-wrap, .reverse .content-wrap { flex-direction: column-reverse; }
    .content-wrap img { width: 100%; }
    .nav-links { flex-direction: column; }
}