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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #f8f9fa;
    min-height: 100vh;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Henry Kurz page specific container width */
body:has(.video-section-kurz) .container {
    max-width: 960px;
}

.hero {
    background: #ffffff;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 20px;
    position: relative;
}

.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-button {
    background: #f8f9fa;
    color: #495057;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 0.9rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.language-button:hover {
    background: #e9ecef;
    color: #2c3e50;
    text-decoration: none;
}

.hero h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: normal;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
    font-style: italic;
    font-weight: normal;
}

.hero-organization {
    font-size: 0.7rem;
    color: #6c757d;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid rgba(0, 128, 0, 0.1);
    padding-top: 20px;
    text-align: center;
}

.hero-organization a {
    vertical-align: text-bottom;
    margin-left: 5px;
    color:green;
}

.main-content {
    background: #ffffff;
    padding: 30px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
}

.problem-section {
    background: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
    border-left: 3px solid #dc3545;
}

.solution-section {
    background: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
    border-left: 3px solid #28a745;
}

.expert-quotes {
    background: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
    border-left: 3px solid #6c757d;
}

.quote {
    font-style: italic;
    font-size: 1rem;
    color: #495057;
    margin: 20px 0;
    padding: 20px;
    background: #ffffff;
    border-left: 2px solid #dee2e6;
}

.quote-author {
    font-weight: normal;
    color: #6c757d;
    margin-top: 10px;
    font-style: normal;
    font-size: 0.9rem;
}

.cta-section {
    background: #495057;
    color: white;
    padding: 40px 30px;
    text-align: center;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.cta-section h2 {
    color: white;
    margin-bottom: 30px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    align-items: center;
}

.cta-button {
    background: #28a745;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: normal;
    transition: background-color 0.3s ease;
    display: inline-block;
    max-width: 350px;
    width: 100%;
    text-align: center;
}

.cta-button:hover {
    background: #218838;
}

.cta-button.secondary {
    background: #6c757d;
}

.cta-button.secondary:hover {
    background: #5a6268;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: #ffffff;
    padding: 25px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #495057;
    margin-bottom: 10px;
}

.demands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.demand-card {
    background: #ffffff;
    padding: 25px;
    border: 1px solid #e9ecef;
    border-left: 3px solid #dc3545;
}

.demand-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.demand-icon i {
    color: #dc3545;
}

h2 i {
    margin-right: 8px;
}

.cta-button i {
    margin-right: 8px;
}

.language-button i {
    margin-right: 5px;
}

h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: normal;
}

h3 {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: normal;
}

p {
    margin-bottom: 15px;
    font-size: 1rem;
}

ul {
    margin: 20px 0;
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    margin-top: 25px;
}

.contact-info h3 {
    color: white;
}

.memorial-context {
    background: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
    border-left: 3px solid #6c757d;
}

.video-section {
    background: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
    border-left: 3px solid #495057;
    text-align: center;
}

.video-section-kurz {
border-left: 3px solid #dc3545;
}


.video-container {
    margin: 25px auto;
    position: relative;
    background: #000;
    overflow: hidden;
    max-width: 600px;
}

.video-container-kurz {
    margin: 25px auto;
    position: relative;
    background: #000;
    overflow: hidden;
    max-width: 960px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    max-width: 80%;
}

.video-placeholder h3 {
    color: white;
    margin-bottom: 15px;
}

.video-placeholder p {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.video-placeholder p:last-child {
    color: #fff;
    font-size: 0.8rem;
    font-style: italic;
}

.video-warning {
    background: #fff3cd;
    padding: 15px;
    margin: 20px 0;
    border-left: 3px solid #ffc107;
    font-size: 0.9rem;
    color: #856404;
}

.video-description {
    font-size: 0.95rem;
    color: #4a5568;
    margin-top: 20px;
    font-style: italic;
}

.importance-highlight {
    color: #e74c3c;
}

.importance-section {
    background: #f8f9fa;
    padding: 25px;
    margin: 20px 0;
    border-left: 3px solid #6c757d;
}

.importance-section.freedom {
    border-left: 3px solid #6c757d;
}

.importance-section.antisemitism {
    border-left: 3px solid #dc3545;
}

.importance-section.responsibility {
    border-left: 3px solid #28a745;
}

.final-cta {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: #495057;
    color: white;
}

.final-cta h2 {
    color: white;
}

.final-cta p:first-of-type {
    font-size: 1.1rem;
    margin-top: 15px;
}

.final-cta p:last-of-type {
    font-size: 1rem;
    margin-top: 15px;
    font-style: italic;
}

.pdf-download-section {
    text-align: center;
    margin: 30px 0;
}

.pdf-download-button {
    display: inline-block;
    max-width: 400px;
}

.ai-assistant-section {
    background: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
    border-left: 3px solid #007bff;
}

.ai-example {
    background: #e3f2fd;
    padding: 20px;
    margin: 20px 0;
    border-left: 3px solid #2196f3;
    font-style: italic;
}

.ai-prompt-suggestion {
    background: #fff3e0;
    padding: 20px;
    margin: 20px 0;
    border-left: 3px solid #ff9800;
}

.prompt-box {
    background: #ffffff;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-family: monospace;
    font-style: italic;
    color: #495057;
}

.ai-chat-section {
    text-align: center;
    margin: 25px 0;
}

.ai-chat-button-container {
    margin: 20px 0;
}

.ai-chat-button {
    background: #28a745;
    border-color: #28a745;
}

.ai-chat-button:hover {
    background: #218838;
    border-color: #218838;
}

.all-contacts-section {
    background: #f8f9fa;
    padding: 30px;
    margin: 30px 0;
    border-left: 3px solid #007bff;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.contact-category {
    background: #ffffff;
    padding: 25px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-category h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 10px;
}

.contact-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f8f9fa;
}

.contact-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.contact-link i {
    margin-right: 6px;
}

.contact-tips {
    background: #fff3cd;
    padding: 20px;
    margin: 30px 0;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
}

.contact-tips h3 {
    color: #856404;
    margin-bottom: 15px;
}

.contact-tips ul {
    margin: 0;
    padding-left: 20px;
}

.contact-tips li {
    color: #856404;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

@media (max-width: 768px) { 
    .container {
        padding: 0 15px;
    }
    
    .language-switcher {
        position: static;
        margin-bottom: 20px;
        text-align: right;
    }
    
    .language-button {
        padding: 6px 12px;
        font-size: 0.85rem;
        margin: 0 5px;
        display: inline-block;
        min-width: 60px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .main-content {
        padding: 20px 15px;
    }
    
    .problem-section,
    .solution-section,
    .expert-quotes,
    .memorial-context,
    .video-section,
    .ai-assistant-section {
        padding: 20px 15px;
    }
    
    .cta-section {
        padding: 30px 15px;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-category {
        padding: 20px;
    }
    
    .all-contacts-section {
        padding: 20px 15px;
    }
}

/* Footer Styles */
footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 40px;
    text-align: center;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

footer .social-media {
   margin: 10px;
}

footer li {
    margin: 0;
}

footer a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #3498db;
    text-decoration: none;
}

footer i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

footer a:hover i {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    footer ul {
        flex-direction: row;
        gap: 15px;
    } 
    
}
