:root {
    --primary-color: #0056b3;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --warning-bg: #fff3cd;
    --warning-border: #ffeeba;
}

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

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

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

.lang-switcher {
    position: absolute;
    top: -60px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.lang-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 12px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}

.lang-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

.lang-link.active {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
}

.section {
    padding: 60px 0;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    border-bottom: 3px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

/* Header */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #003d7a 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Cards */
.card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.bg-light {
    background-color: #fdfdfd;
}

.benefits-list {
    margin: 20px 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.benefits-list li {
    background-color: #f1f8ff;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-size: 0.95rem;
}

.slack-info {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.slack-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #f1f8ff;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.slack-info a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Grid & Candidate Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.candidate-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.candidate-card:hover {
}

.candidate-image {
    height: 300px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.volkmar-image {
    object-position: top;
}

.candidate-info {
    padding: 25px;
}

.candidate-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.image-container {
    position: relative;
    overflow: hidden;
}

.list-number-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: #333;
    font-weight: 800;
    font-size: 1.5rem;
    padding: 5px 15px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 5;
}

.list-number-highlight {
    font-weight: 800;
    color: var(--accent-color);
    font-size: 1.4rem;
    margin: 0 5px;
}

.bio {
    font-size: 0.95rem;
    color: var(--secondary-color);
}

/* Strategy Box */
.strategy-box {
    border-left: 10px solid var(--accent-color);
}

.strategy-highlight {
    background-color: #e7f1ff;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Warning Section */
.warning {
    background-color: var(--warning-bg);
    border: 1px solid var(--warning-border);
}

.warning h3 {
    color: #856404;
}

.warning ul {
    margin-left: 20px;
    margin-top: 10px;
}

.warning li {
    margin-bottom: 5px;
}

/* CTA Box */
.cta-box {
    background-color: #003d7a;
    color: var(--white);
    text-align: center;
}

.cta-box h2 {
    color: var(--white);
    border-color: var(--accent-color);
}

.slack-handles {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.slack-link {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slack-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: var(--white);
}

/* Legal Footer */
.legal-footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 60px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
}

.legal-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* Legal Page Layout */
.legal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.legal-content h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.legal-content p {
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .section {
        padding: 40px 0;
    }
}
