:root {
    --primary-color: #2b5d8f;
    --accent-color: #e74c3c;
    --text-color: #333;
    --background-color: #f5f6fa;
    --container-width: 1200px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header/Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color), #1a365d);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero-logo {
    max-width: 300px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero .tagline {
    font-size: 1.5rem;
    opacity: 0.9;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 1.5rem;
}

.hosts {
    color: var(--primary-color);
    font-style: italic;
    font-weight: 500;
    margin-top: 2rem;
}

/* Main Content Sections */
section {
    padding: 60px 0;
}

h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.5rem;
}

h3 {
    color: var(--primary-color);
    margin: 40px 0 20px;
    text-align: center;
    font-size: 2rem;
}

/* Links Sections */
.social-links, .podcast-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.social-link, .podcast-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    padding: 20px 30px;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.social-link:hover, .podcast-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: var(--accent-color);
}

.social-link i, .podcast-link i {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.social-link span, .podcast-link span {
    font-weight: 500;
}

/* Impressum Styles */
.impressum-hero {
    padding: 40px 0;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.impressum-content h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.impressum-content h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    text-align: left;
}

.impressum-content h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
}

.impressum-content p, .impressum-content ul {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.impressum-content ul {
    padding-left: 20px;
}

.impressum-content li {
    margin-bottom: 0.5rem;
}

.impressum-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.impressum-content a:hover {
    border-color: var(--primary-color);
}

/* Footer Update */
footer {
    background: var(--primary-color);
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

footer a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 200px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.2rem;
    }
    
    .about-content {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .social-links, .podcast-links {
        gap: 20px;
    }
    
    .social-link, .podcast-link {
        padding: 15px 25px;
        min-width: 130px;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .footer-links {
        margin-top: 10px;
        justify-content: center;
        width: 100%;
    }
    
    .impressum-content {
        padding: 20px;
    }
    
    .impressum-content h2 {
        font-size: 1.6rem;
    }
    
    .impressum-content h3 {
        font-size: 1.3rem;
    }
}
