body {
    background-color: #DFDFDF;
}

.main-content {
    padding: 140px 1rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Stipendium Section */
.stipendium-section {
    margin-bottom: 4rem;
}

.stipendium-section h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    color: #ff0000;
    margin-bottom: 2rem;
}

.content-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-box .description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333;
}

.content-box p {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.download-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.download-link:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.download-link .icon {
    font-size: 1.5rem;
}

.stipendium-downloads {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Downloads Section */
.downloads-section {
    margin-bottom: 3rem;
}

.downloads-section > h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    color: #ff0000;
    margin-bottom: 3rem;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.download-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-category:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.15);
}

.download-category h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #ff0000;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(240, 240, 240, 0.5);
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.download-item:hover {
    background: rgba(255, 0, 0, 0.1);
    border-left-color: #ff0000;
    transform: translateX(5px);
}

.download-item .icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.download-item .text {
    flex: 1;
}

.no-items {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 1rem;
}

/* Footer */
#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;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding-top: 100px;
    }
    
    .content-box {
        padding: 1.5rem;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .download-category {
        padding: 1.5rem;
    }
}