/* ============================================ */
/* ABSCHNITT 1: DSGVO-KONFORME SCHRIFTARTEN */
/* ============================================ */

/* ============================================ */
/* UNTERABSCHNITT 1.1: INTER SCHRIFTFAMILIE */
/* ============================================ */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url('./fonts/inter/Inter300.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/inter/Inter400.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url('./fonts/inter/Inter500.woff2') format('woff2');
    font-display: swap;
}

/* ============================================ */
/* UNTERABSCHNITT 1.2: MONTSERRAT SCHRIFTFAMILIE */
/* ============================================ */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('./fonts/montserrat/Montserrat600.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/montserrat/Montserrat700.woff2') format('woff2');
    font-display: swap;
}

/* ============================================ */
/* ABSCHNITT 2: BASIS-STILE (MOBILE-FIRST) */
/* ============================================ */

/* ============================================ */
/* UNTERABSCHNITT 2.1: UNIVERSAL-STILE */
/* ============================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ============================================ */
/* UNTERABSCHNITT 2.2: CSS-VARIABLEN */
/* ============================================ */
:root {
    --primary-blue: #4169e2;
    --white: #FFFFFF;
    --background: #F8F9FA;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #DDDDDD;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --dark-blue: #2a4eb3;
}

/* ============================================ */
/* UNTERABSCHNITT 2.3: BODY-STILE */
/* ============================================ */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

/* ============================================ */
/* UNTERABSCHNITT 2.4: MAIN-ELEMENT */
/* ============================================ */
main {
    flex: 1;
    width: 100%;
}

/* ============================================ */
/* UNTERABSCHNITT 2.5: CONTAINER-KLASSE */
/* ============================================ */
.container {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

/* ============================================ */
/* ABSCHNITT 3: HEADER & NAVIGATION (MOBILE) */
/* ============================================ */

/* ============================================ */
/* UNTERABSCHNITT 3.1: HAUPT-HEADER */
/* ============================================ */
.main-header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
}

/* ============================================ */
/* UNTERABSCHNITT 3.2: HEADER-CONTAINER */
/* ============================================ */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

/* ============================================ */
/* UNTERABSCHNITT 3.3: LOGO-BEREICH */
/* ============================================ */
.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    height: 50px;
    width: auto;
    max-height: 50px;
}

/* ============================================ */
/* UNTERABSCHNITT 3.4: MOBILE MENÜ-TOGGLE */
/* ============================================ */
.menu-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-blue);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 1001;
}

.menu-icon {
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

/* ============================================ */
/* UNTERABSCHNITT 3.5: NAVIGATION (MOBILE) */
/* ============================================ */
.main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    display: block;
    visibility: hidden;
}

.main-nav.active {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}

/* ============================================ */
/* UNTERABSCHNITT 3.6: NAVIGATIONS-LINKS */
/* ============================================ */
.nav-link {
    display: block;
    padding: 18px 20px;
    color: var(--text-dark);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--background);
    color: var(--primary-blue);
}

.nav-link.active {
    color: var(--primary-blue);
    font-weight: 500;
    background-color: rgba(65, 105, 226, 0.05);
}

/* ============================================ */
/* ABSCHNITT 4: HERO-BEREICH (MOBILE) */
/* ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
    line-height: 1.3;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ============================================ */
/* ABSCHNITT 5: INHALTSBEREICHE (MOBILE) */
/* ============================================ */

.history-section, .content-section, .training-content, .contact-info, .legal-section {
    padding: 40px 0;
    width: 100%;
}

.history-section {
    background: #f0f7ff;
}

.history-content, .intro-content, .info-content, .legal-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
}

.page-header {
    background-color: #e9f0f8;
    padding: 40px 0;
    text-align: center;
    width: 100%;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 10px;
    font-weight: 300;
}

/* ============================================ */
/* ABSCHNITT 6: LINK-BOXEN OHNE ICONS (MOBILE) */
/* ============================================ */

.link-boxes {
    padding: 40px 0;
    width: 100%;
}

.link-boxes h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
}

.boxes-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.box-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.content-box {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 30px 25px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.3s ease;
    width: 100%;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.content-box h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
}

.content-box p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.box-link-text {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 500;
    margin-top: 20px;
    font-size: 1rem;
}

/* ============================================ */
/* ABSCHNITT 7: STATUS-BOX (MOBILE) */
/* ============================================ */

.status-section {
    padding: 30px 0;
    width: 100%;
}

.status-box {
    background-color: #fff8e1;
    border-left: 5px solid #ffc107;
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
}

.status-box h2 {
    color: #856404;
    margin-bottom: 15px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
}

/* ============================================ */
/* ABSCHNITT 8: BILDER & UPDATES (MOBILE) */
/* ============================================ */

.image-section {
    padding: 40px 0;
    width: 100%;
}

.image-container {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    width: 100%;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
    width: 100%;
}

.image-caption {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    font-weight: 300;
}

.updates-section {
    padding: 40px 0;
    width: 100%;
}

.updates-placeholder {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
}

.updates-list {
    margin-top: 20px;
}

.update-item {
    display: flex;
    flex-direction: column;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.update-item:last-child {
    border-bottom: none;
}

.update-date {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.update-text {
    line-height: 1.5;
}

/* ============================================ */
/* ABSCHNITT 9: TRAINING-BEREICH (MOBILE) */
/* ============================================ */

.training-content {
    padding: 40px 0;
}

.training-intro {
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.training-intro h2 {
    margin-bottom: 15px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
}

.training-intro p {
    text-align: center;
    line-height: 1.6;
}

/* ============================================ */
/* UNTERABSCHNITT 9.1: GLEICH GROSSE BOXEN - KORRIGIERT */
/* ============================================ */
.uniform-boxes {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
    width: 100%;
}

.uniform-boxes .info-card {
    width: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.training-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.info-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    border-top: 4px solid var(--primary-blue);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 1.3rem;
}

.info-card p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-card ul {
    padding-left: 20px;
    margin: 15px 0;
    flex-grow: 1;
}

.info-card li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.training-notice {
    background-color: #e8f5e9;
    border-left: 5px solid #4caf50;
    padding: 25px;
    border-radius: var(--radius);
    margin: 30px 0;
    width: 100%;
}

.training-notice h3 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}

.training-notice p {
    line-height: 1.6;
}

.training-cta {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    margin: 30px auto 0;
}

.training-cta h3 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

/* ============================================ */
/* UNTERABSCHNITT 9.2: CALL-TO-ACTION BUTTONS */
/* ============================================ */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: none;
    font-size: 1rem;
    min-height: 50px;
    width: 100%;
}

.primary-btn {
    background-color: var(--primary-blue);
    color: var(--white);
}

.primary-btn:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.secondary-btn:hover {
    background-color: rgba(65, 105, 226, 0.1);
    color: var(--primary-blue);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ============================================ */
/* ABSCHNITT 10: KONTAKT-BEREICH (MOBILE) */
/* ============================================ */

.contact-info {
    padding: 40px 0;
    width: 100%;
}

.contact-info h2 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.contact-item {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    border-left: 4px solid var(--primary-blue);
}

.contact-item h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
}

.contact-item p {
    line-height: 1.6;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
    font-weight: 300;
}

.contact-note-box {
    background-color: #e3f2fd;
    border-left: 5px solid var(--primary-blue);
    padding: 20px;
    border-radius: var(--radius);
    margin-top: 30px;
    width: 100%;
}

.contact-note-box p {
    line-height: 1.6;
}

/* ============================================ */
/* ABSCHNITT 11: DOWNLOAD-BEREICH (MOBILE) */
/* ============================================ */

.download-section {
    padding: 40px 0;
    width: 100%;
}

.download-section h2 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
}

.download-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    width: 100%;
    border: 2px dashed var(--primary-blue);
    margin: 0 auto;
}

.download-box h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
}

.download-box p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 18px 30px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 1.1rem;
    margin: 25px 0 15px;
    text-decoration: none;
    min-height: 60px;
    transition: background-color 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.download-btn:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

.download-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 10px;
    font-weight: 300;
}

/* ============================================ */
/* ABSCHNITT 12: NOTICE-BEREICH (MOBILE) */
/* ============================================ */

.notice {
    padding: 40px 0;
    width: 100%;
}

.notice-content {
    background-color: #e3f2fd;
    border-left: 5px solid var(--primary-blue);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.notice-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
}

.notice-content p {
    line-height: 1.6;
}

/* ============================================ */
/* ABSCHNITT 13: RECHTLICHES (MOBILE) */
/* ============================================ */

.legal-section {
    padding: 40px 0;
}

.legal-section h2 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
}

.legal-content {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
}

.legal-content h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.legal-content h3 {
    color: var(--primary-blue);
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.legal-content ul {
    padding-left: 20px;
    margin: 15px 0;
}

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.5;
}

/* ============================================ */
/* ABSCHNITT 14: ALLE ÜBERSCHRIFTEN */
/* ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

h1, .hero-title {
    font-weight: 700;
}

h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* ============================================ */
/* ABSCHNITT 15: FOOTER (MOBILE) */
/* ============================================ */

.main-footer {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
    width: 100%;
    border-top: 1px solid var(--border-color);
}

.footer-logo {
    max-height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.main-footer p {
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.6;
}

.footer-links {
    margin-top: 20px;
}

.footer-links a {
    color: var(--primary-blue);
    text-decoration: none;
    margin: 0 10px;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ============================================ */
/* ABSCHNITT 16: TABLET (768px - 1023px) */
/* ============================================ */

@media (min-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .boxes-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .box-link {
        width: calc(50% - 15px);
    }
    
    .content-box {
        padding: 35px 30px;
    }
    
    .content-box h3 {
        font-size: 1.5rem;
    }
    
    /* ============================================ */
    /* UNTERABSCHNITT 16.1: GLEICH GROSSE BOXEN TABLET - KORRIGIERT */
    /* ============================================ */
    .uniform-boxes {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    
    .uniform-boxes .info-card {
        width: calc(50% - 15px);
        min-height: 280px;
        max-width: none;
        margin: 0;
    }
    
    .training-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .info-card {
        width: calc(50% - 15px);
    }
    
    .training-notice {
        max-width: none;
    }
    
    .training-cta {
        max-width: none;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        max-width: none;
    }
    
    .btn {
        width: auto;
        min-width: 200px;
    }
    
    .contact-details {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .contact-item {
        width: calc(50% - 15px);
    }
    
    .download-box {
        max-width: none;
    }
    
    .download-btn {
        width: auto;
        padding: 20px 40px;
    }
    
    /* ============================================ */
    /* UNTERABSCHNITT 16.2: NAVIGATION TABLET/DESKTOP */
    /* ============================================ */
    .menu-toggle {
        display: none !important;
    }
    
    .main-nav {
        display: flex !important;
        position: static;
        background: none;
        box-shadow: none;
        max-height: none !important;
        width: auto;
        padding: 0;
        opacity: 1 !important;
        visibility: visible !important;
        overflow: visible !important;
    }
    
    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        border: none;
        font-size: 1rem;
        margin: 0 5px;
    }
    
    .nav-link.active {
        background-color: rgba(65, 105, 226, 0.1);
        border-radius: 4px;
    }
}

/* ============================================ */
/* ABSCHNITT 17: DESKTOP (ab 1024px) */
/* ============================================ */

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 3.5rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .boxes-grid {
        gap: 40px;
    }
    
    .box-link {
        width: calc(33.333% - 27px);
    }
    
    .content-box {
        padding: 40px 35px;
    }
    
    .content-box h3 {
        font-size: 1.6rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    /* ============================================ */
    /* UNTERABSCHNITT 17.1: GLEICH GROSSE BOXEN DESKTOP - KORRIGIERT */
    /* ============================================ */
    .uniform-boxes {
        gap: 40px;
        justify-content: center;
    }
    
    .uniform-boxes .info-card {
        width: calc(50% - 20px);
        min-height: 300px;
        max-width: 500px;
    }
    
    .training-info {
        gap: 40px;
    }
    
    .info-card {
        width: calc(33.333% - 27px);
    }
    
    .contact-details {
        gap: 40px;
    }
    
    .contact-item {
        width: calc(33.333% - 27px);
    }
    
    .nav-link {
        padding: 12px 25px;
        margin: 0 10px;
        font-size: 1.1rem;
    }
    
    .download-btn {
        padding: 22px 50px;
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 18px 36px;
        font-size: 1.1rem;
    }
}

/* ============================================ */
/* ABSCHNITT 18: TOUCH-FRIENDLY ELEMENTE */
/* ============================================ */

button, 
a.btn, 
.nav-link,
.menu-toggle,
.download-btn {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

/* ============================================ */
/* UNTERABSCHNITT 18.1: IOS ZOOM-VERHINDERUNG */
/* ============================================ */
input, select, textarea {
    font-size: 16px;
}

/* ============================================ */
/* ABSCHNITT 19: BURGER-MENÜ KORREKTUREN */
/* ============================================ */

@media (max-width: 767px) {
    .menu-toggle {
        display: flex !important;
    }
    
    .main-nav.active {
        display: block !important;
        max-height: 400px !important;
        overflow-y: auto !important;
    }
}

/* ============================================ */
/* ABSCHNITT 20: SPEZIELLE EVENT CTA-STILE */
/* ============================================ */
.training-cta.event-cta {
    max-width: 600px;
    margin: 40px auto 0;
    width: 100%;
}

.training-cta.event-cta .cta-buttons {
    max-width: 400px;
    margin: 0 auto;
}

.training-cta.event-cta .btn {
    width: 100%;
}

@media (min-width: 768px) {
    .training-cta.event-cta {
        max-width: 700px;
    }
    
    .training-cta.event-cta .cta-buttons {
        max-width: 500px;
    }
    
    .training-cta.event-cta .btn {
        width: auto;
        min-width: 200px;
    }
}

@media (min-width: 1024px) {
    .training-cta.event-cta {
        max-width: 800px;
    }
}

/* ============================================ */
/* ABSCHNITT 21: GENERISCHE UTILITY-KLASSEN */
/* ============================================ */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

/* ============================================ */
/* ABSCHNITT 22: ZUGÄNGLICHKEITSVERBESSERUNGEN */
/* ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* ============================================ */
/* ABSCHNITT 23: FEHLERKORREKTUREN UND VERBESSERUNGEN */
/* ============================================ */

/* Sicherstellen, dass alle Boxen gleich hoch sind */
.flex-equal-height {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Verbesserte Bildanpassung für verschiedene Geräte */
.responsive-image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Bessere Lesbarkeit für lange Texte */
.long-text {
    line-height: 1.7;
    text-align: justify;
    hyphens: auto;
}

/* Verbesserte Druckstile */
@media print {
    .main-header,
    .main-footer,
    .menu-toggle,
    .training-cta {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}