:root {
    --primary: #2C3E50;
    --secondary: #34495E;
    --accent: #E67E22;
    --light: #ECF0F1;
    --white: #FFFFFF;
    --text: #2c3e50;
    
    --spacing-unit: 1rem;
    --container-width: 1200px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
    color: var(--primary);
    margin-bottom: var(--spacing-unit);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Systeme */
.insight-grid,.dimensions-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

/* Tabellen Styling für Gallup Daten */
.gallup-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.gallup-table th,.gallup-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.gallup-table th {
    background-color: var(--primary);
    color: var(--white);
}

.gallup-table.positive {
    color: #27ae60;
    font-weight: bold;
}