body {
    background-color: #DFDFDF;
}

.main-content {
    padding: 140px 1rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: bolder;
    text-align: center;
    color: #ff0000;
    margin-bottom: 3rem;
}

.gremium-section {
    background: white;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-radius: 15px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    color: #333;
    margin-bottom: 2rem;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gremium-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gremium-image:hover {
    transform: scale(1.02);
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3);
}

.gremium-placeholder {
    width: 100%;
    min-height: 220px;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px dashed #ff0000;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.08), rgba(255, 255, 255, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
}

.gremium-placeholder span {
    display: block;
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 0.5rem;
}

.gremium-placeholder strong {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: #ff0000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.single-image {
    text-align: center;
    margin-bottom: 2rem;
}

.gremium-image-large {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gremium-image-large:hover {
    transform: scale(1.02);
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3);
}

.description {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    margin: 1.5rem 0;
    color: #333;
}

.contact-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(240, 240, 240, 0.7);
    border-radius: 10px;
    border-left: 4px solid #ff0000;
}

.contact-info p {
    margin: 0.75rem 0;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
}

.contact-info strong {
    color: #ff0000;
}

#ganzunten {
    width: 100%;
    padding: 2rem 0;
    background-color: #2E2E2E;
    text-align: center;
    margin-top: 4rem;
}

#ganzunten a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

#ganzunten a:hover {
    color: #ff0000;
}

@media (max-width: 768px) {
    .main-content {
        padding-top: 100px;
    }
    
    .gremium-section {
        padding: 1.5rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
