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

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

/* Top Header */
.top-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.top-header a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.top-header a:hover {
    color: #22c55e;
}

/* Main Header */
.main-header {
    background: #ffffff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.logo img {
    height: 60px;
    width: auto;
}

.school-name h1 {
    font-size: 2.2rem;
    font-weight: 300;
    color: #1e3a8a;
    margin-bottom: 0.2rem;
    letter-spacing: -0.5px;
}

.school-name .willi {
    font-weight: 600;
    color: #1e3a8a;
}

.school-name .gesamtschule {
    color: #22c55e;
    font-weight: 400;
}

.school-name .tagline {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 400;
    font-style: italic;
}

/* Navigation */
.main-nav {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.nav-menu > li > a:hover {
    color: #1e3a8a;
    background: #ffffff;
    border-bottom-color: #22c55e;
}

/* Dropdown Menüs */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 280px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-menu li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu h4 {
    color: #1e3a8a;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: #1e3a8a;
    padding-left: 1.5rem;
}

/* Hero Section mit geschwungenem Hintergrund */
.hero {
    background: url('video/gifhead.gif');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(30, 58, 138, 0.8) 0%, 
        rgba(59, 130, 246, 0.6) 25%, 
        rgba(34, 197, 94, 0.4) 50%, 
        rgba(59, 130, 246, 0.6) 75%, 
        rgba(30, 58, 138, 0.8) 100%);
    background-size: 400% 400%;
    animation: waveAnimation 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes waveAnimation {
    0%, 100% { 
        background-position: 0% 50%;
    }
    25% { 
        background-position: 100% 50%;
    }
    50% { 
        background-position: 50% 100%;
    }
    75% { 
        background-position: 50% 0%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 200;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-content .willi {
    color: #22c55e;
    font-weight: 600;
}

.hero-content h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.4);
}

.btn-success {
    background: #22c55e;
    color: white;
    border-color: #22c55e;
}

.btn-success:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.btn-info {
    background: #06b6d4;
    color: white;
    border-color: #06b6d4;
}

.btn-info:hover {
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.4);
}

/* Content Sections */
.section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section:nth-child(even) {
    background: #f8fafc;
}

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

.card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #22c55e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #1e3a8a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-icon {
    font-size: 1.5rem;
    color: #22c55e;
}

.card p {
    color: #4b5563;
    line-height: 1.6;
    font-weight: 300;
}

/* News Alert */
.news-alert {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid #007bff;
    padding: 20px;
    border-radius: 8px;
    margin: 2rem 0;
}

.news-alert h4 {
    color: #495057;
    margin-bottom: 0.5rem;
}

.news-alert p {
    color: #6c757d;
    margin-bottom: 1rem;
}

/* Musik-Ticker Styles */
.music-ticker {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 0.75rem 1rem;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #22c55e;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.music-ticker::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: tickerShine 3s infinite;
}

@keyframes tickerShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.ticker-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.ticker-icon {
    font-size: 1.2rem;
    color: #22c55e;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.ticker-text {
    flex: 1;
    font-weight: 500;
    font-size: 0.95rem;
}

.ticker-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mini-play-btn {
    background: #22c55e;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
}

.mini-play-btn:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.3);
}

.mini-download {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 35px;
    height: 35px;
}

.mini-download:hover {
    background: rgba(255,255,255,0.3);
    color: white;
    transform: translateY(-1px);
}

.ticker-close {
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    padding: 0.3rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    margin-left: 0.5rem;
}

.ticker-close:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

/* Musik-Ticker Responsive */
@media (max-width: 768px) {
    .music-ticker {
        padding: 0.75rem 0.5rem;
    }

    .ticker-content {
        gap: 0.75rem;
        padding: 0 0.5rem;
        flex-wrap: nowrap;
    }

    .ticker-left {
        gap: 0.75rem;
        min-width: 0;
    }

    .ticker-text {
        font-size: 0.85rem;
    }

    .mini-play-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .mini-download, .ticker-close {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .music-ticker {
        padding: 0.75rem 0.25rem;
    }

    .ticker-content {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        text-align: center;
    }

    .ticker-left {
        justify-content: center;
        width: 100%;
    }

    .ticker-text {
        font-size: 0.85rem;
        text-align: center;
    }

    .ticker-actions {
        justify-content: center;
    }

    .ticker-close {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
        width: 28px;
        height: 28px;
    }
}
.mobile-menu-toggle {
    display: none;
    background: #f8fafc;
    border: 2px solid #1e3a8a;
    font-size: 1.5rem;
    color: #1e3a8a;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    z-index: 1001;
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background-color: #1e3a8a;
    color: white;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #22c55e;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #22c55e;
}

.footer-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #374151;
    opacity: 0.7;
}

/* Responsive Design */

/* Large Tablets */
@media (max-width: 1024px) {
    .header-content {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .content-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .top-header {
        font-size: 0.8rem;
    }
    
    .top-header > div > div {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }

    .logo-section {
        flex: 1;
        justify-content: flex-start;
    }

    .school-name h1 {
        font-size: 1.6rem;
        text-align: left;
        line-height: 1.2;
    }
    
    .school-name .tagline {
        font-size: 0.85rem;
        text-align: left;
    }

    .mobile-menu-toggle {
        display: block;
        flex-shrink: 0;
        margin-left: auto;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        flex-direction: column;
        z-index: 1000;
        max-height: 70vh;
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f8fafc;
        margin-left: 1rem;
        border-radius: 0;
    }

    .hero {
        padding: 3rem 1rem;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .section {
        padding: 2.5rem 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .card .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* News Section Mobile */
    .section h2 {
        font-size: 2rem;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .section > div:first-child {
        flex-direction: column;
        text-align: center;
    }
    
    .section > div:first-child > div {
        margin: 1rem 0;
    }
    
    /* Willi Fährmann Section Mobile */
    .section[style*="background: linear-gradient"] h2 {
        font-size: 2.2rem;
    }
    
    .section[style*="background: linear-gradient"] p {
        font-size: 1.2rem;
    }
    
    /* Office 365 Video Section Mobile */
    .section > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .top-header {
        padding: 0.25rem 0;
        font-size: 0.75rem;
    }
    
    .main-header {
        padding: 1rem 0;
    }
    
    .header-content {
        padding: 0 0.5rem;
        gap: 0.5rem;
    }
    
    .logo img {
        height: 45px;
    }
    
    .school-name h1 {
        font-size: 1.3rem;
        line-height: 1.1;
    }
    
    .school-name .tagline {
        font-size: 0.8rem;
    }

    .mobile-menu-toggle {
        font-size: 1.3rem;
        padding: 0.4rem;
    }

    .hero {
        padding: 2rem 0.5rem;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-content h2 {
        font-size: 1.1rem;
    }

    .section {
        padding: 2rem 0.5rem;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-logo img {
        max-height: 50px;
    }
}

/* Extra Small Devices */
@media (max-width: 320px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .card h3 {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Year Badge */
.year-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    margin-bottom: 2rem;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-box p {
    color: #78350f;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.info-box strong {
    color: #92400e;
}

/* Grade Cards Grid */
.grade-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.grade-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.grade-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.grade-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.grade-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border-radius: 12px;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.grade-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.download-link:hover {
    background: #f0f9ff;
    border-left-color: #1e3a8a;
    transform: translateX(5px);
}

.download-link i {
    color: #ef4444;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.download-link span {
    font-weight: 500;
}

/* Grade Cards Mobile */
@media (max-width: 768px) {
    .grade-cards-grid {
        grid-template-columns: 1fr;
    }

    .grade-card {
        padding: 1.5rem;
    }

    .grade-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .grade-title {
        font-size: 1.25rem;
    }
}
    

/* Two Column Layout for Anmeldung Pages */
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Documents Card */
.documents-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #1e3a8a;
}

.documents-card h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.documents-list {
    list-style: none;
    padding: 0;
}

.documents-list li {
    margin-bottom: 1rem;
}

.documents-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #374151;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.documents-list a:hover {
    background: #f0f9ff;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.documents-list a i {
    color: #ef4444;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.highlight-box p {
    margin: 0.5rem 0;
}

.highlight-box strong {
    color: #92400e;
}

/* Date Badge */
.date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    border-radius: 12px;
    padding: 1rem;
    min-width: 100px;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    margin-bottom: 1.5rem;
}

.date-badge .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-badge .year {
    font-size: 0.9rem;
    opacity: 0.95;
}

/* Button Primary Enhanced */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white !important;
}

.btn-primary i {
    font-size: 1.2rem;
    color: white;
}

/* Two Column Mobile */
@media (max-width: 968px) {
    .two-column-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== Ergänzende Styles aus indiFoerderung.html ===== */

/* Seitenkopf (Page Header) */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* Hauptinhalt */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Einführungstext (optional) */
.intro-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #1e3a8a;
    padding: 2rem;
    margin-bottom: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.intro-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 1rem;
}

/* Abschnitts-Karten (Section Cards) */
.section-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.section-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Kopfbereich jeder Karte */
.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e3a8a;
    flex: 1;
}

/* Karten-Inhalt */
.section-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 1rem;
}

/* Listenstil (z. B. Downloads) */
.list-items {
    margin-top: 1.5rem;
}

.list-item {
    display: block;
    background: #f8fafc;
    border-left: 3px solid #22c55e;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 6px;
    text-decoration: none;
    color: #374151;
    transition: all 0.2s ease;
}

.list-item:hover {
    background: #f0f9ff;
    border-left-color: #1e3a8a;
    transform: translateX(5px);
    color: #1e3a8a;
}

/* Buttons (Übernimmt deine vorhandenen Farbwerte) */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: #1e3a8a;
    color: white;
    border-color: #1e3a8a;
}

.btn-primary:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .section-card {
        padding: 1.5rem;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .intro-section {
        padding: 1.5rem;
    }
}

