/********** Intelligent Sitemap Styles **********/

        :root {
            --primary-color: #00937a;
            --secondary-color: #2a9d8f;
            --accent-color: #00937a;
            --success-color: #2a9d8f;
            --warning-color: #f4a261;
            --dark-color: #264653;
            --light-bg: #f8f9fa;
            --border-color: #e9ecef;
        }

        /* ===== GENERAL STYLES ===== */
        .sitemap-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-divider {
            height: 2px;
            background: linear-gradient(to right, var(--primary-color), transparent);
            margin: 50px 0 40px 0;
        }

        /* ===== SEARCH BAR ===== */
        .sitemap-search-wrapper {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 30px;
            border-radius: 12px;
            margin-bottom: 50px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .sitemap-search-wrapper h3 {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .sitemap-search-input-group {
            position: relative;
        }

        .sitemap-search-input {
            width: 100%;
            padding: 14px 20px 14px 45px;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .sitemap-search-input:focus {
            outline: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        .sitemap-search-input::placeholder {
            color: #999;
        }

        .sitemap-search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 1.1rem;
        }

        .search-results {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            max-height: 400px;
            overflow-y: auto;
            z-index: 1000;
            margin-top: 10px;
        }

        .search-results.active {
            display: block;
        }

        .search-result-item {
            display: block;
            padding: 14px 20px 14px 25px;
            border-bottom: 1px solid var(--border-color);
            cursor: pointer;
            transition: background 0.2s ease;
            text-decoration: none;
        }

        .search-result-item:hover {
            background: var(--light-bg);
        }

        .search-result-item:last-child {
            border-bottom: none;
        }

        .search-result-title {
            font-weight: 600;
            color: var(--primary-color);
            margin: 0 0 4px 0;
        }

        .search-result-category {
            font-size: 0.85rem;
            color: #999;
            margin: 0;
        }

        /* ===== INTRO BOX ===== */
        .intro-box {
            background: linear-gradient(135deg, #f0faf8 0%, #f8f9fa 100%);
            padding: 30px;
            border-radius: 12px;
            border-left: 5px solid var(--primary-color);
            margin-bottom: 50px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .intro-box h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .intro-box p {
            color: #555;
            margin: 0;
            line-height: 1.6;
        }

        /* ===== TARGET GROUP CARDS ===== */
        .target-groups-section {
            margin-bottom: 60px;
        }

        .target-groups-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .target-groups-section h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .target-group-card {
            background: white;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .target-group-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .target-group-card:hover {
            border-color: var(--primary-color);
            box-shadow: 0 8px 25px rgba(0, 147, 122, 0.15);
            transform: translateY(-5px);
        }

        .target-group-card:hover::before {
            transform: scaleX(1);
        }

        .target-group-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .target-group-icon {
            width: 50px;
            height: 50px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .target-group-icon.parents {
            background: rgba(69, 123, 157, 0.15);
            color: var(--secondary-color);
        }

        .target-group-icon.students {
            background: rgba(0, 147, 122, 0.15);
            color: var(--primary-color);
        }

        .target-group-icon.staff {
            background: rgba(231, 111, 81, 0.15);
            color: var(--accent-color);
        }

        .target-group-icon.applicants {
            background: rgba(244, 162, 97, 0.15);
            color: var(--warning-color);
        }

        .target-group-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark-color);
            margin: 0;
        }

        .target-group-description {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .target-group-links {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .target-group-link {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            background: var(--light-bg);
            border-radius: 8px;
            text-decoration: none;
            color: #444;
            transition: all 0.2s ease;
            border: 1px solid transparent;
        }

        .target-group-link:hover {
            background: white;
            color: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateX(5px);
        }

        .target-group-link i {
            margin-right: 10px;
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        /* ===== CORE SECTIONS ===== */
        .core-sections-section {
            margin-bottom: 60px;
        }

        .core-sections-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .core-sections-section h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }

        .core-section-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .core-section-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .core-section-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-8px);
        }

        .core-section-header {
            padding: 25px;
            background: linear-gradient(135deg, rgba(0, 147, 122, 0.1) 0%, rgba(69, 123, 157, 0.1) 100%);
            border-bottom: 2px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .core-section-header.profile {
            background: linear-gradient(135deg, rgba(69, 123, 157, 0.1) 0%, rgba(42, 157, 143, 0.1) 100%);
        }

        .core-section-header.school-life {
            background: linear-gradient(135deg, rgba(0, 147, 122, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
        }

        .core-section-header.admin {
            background: linear-gradient(135deg, rgba(231, 111, 81, 0.1) 0%, rgba(244, 162, 97, 0.1) 100%);
        }

        .core-section-icon {
            font-size: 2rem;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .core-section-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--dark-color);
            margin: 0;
        }

        .core-section-body {
            padding: 25px;
        }

        .core-section-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .core-section-list li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 28px;
        }

        .core-section-list li:before {
            content: '\203A';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
        }

        .core-section-list li:last-child {
            margin-bottom: 0;
        }

        .core-section-list a {
            color: #444;
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .core-section-list a:hover {
            color: var(--primary-color);
            transform: translateX(3px);
        }

        .badge-new {
            display: inline-block;
            background: #dc3545;
            color: white;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-left: 8px;
        }

        .badge-updated {
            display: inline-block;
            background: #ffc107;
            color: #333;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.7rem;
            font-weight: 600;
            margin-left: 8px;
        }

        /* ===== SERVICE HUB ===== */
        .service-hub-section {
            margin-bottom: 60px;
        }

        .service-hub-section h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .service-hub-section h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent-color);
            border-radius: 2px;
        }

        .service-hub-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .service-hub-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border-left: 5px solid var(--primary-color);
        }

        .service-hub-card:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-5px);
        }

        .service-hub-card.learning {
            border-left-color: var(--secondary-color);
        }

        .service-hub-card.downloads {
            border-left-color: var(--accent-color);
        }

        .service-hub-card.contact {
            border-left-color: var(--success-color);
        }

        .service-hub-header {
            padding: 20px;
            background: var(--light-bg);
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .service-hub-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .service-hub-card.learning .service-hub-icon {
            color: var(--secondary-color);
        }

        .service-hub-card.downloads .service-hub-icon {
            color: var(--accent-color);
        }

        .service-hub-card.contact .service-hub-icon {
            color: var(--success-color);
        }

        .service-hub-title {
            font-weight: 600;
            color: var(--dark-color);
            margin: 0;
            font-size: 1.05rem;
        }

        .service-hub-body {
            padding: 20px;
        }

        .service-hub-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-hub-list li {
            margin-bottom: 10px;
        }

        .service-hub-list li:last-child {
            margin-bottom: 0;
        }

        .service-hub-list a {
            color: #444;
            text-decoration: none;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.2s ease;
            padding: 8px 0;
        }

        .service-hub-list a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .service-hub-list a i {
            font-size: 0.9rem;
            color: var(--primary-color);
        }

        .service-hub-list a .pdf-icon {
            color: #dc3545;
        }

        /* ===== QUICK ACCESS ===== */
        .quick-access-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 40px;
            border-radius: 12px;
            margin-bottom: 50px;
            color: white;
        }

        .quick-access-section h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .quick-access-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .quick-access-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.5);
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .quick-access-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: white;
            transform: translateY(-3px);
            color: white;
        }

        /* ===== HINT BOX ===== */
        .hint-box {
            background: linear-gradient(135deg, #e8f5f3 0%, #f0faf8 100%);
            padding: 25px;
            border-radius: 12px;
            border-left: 5px solid var(--primary-color);
            margin-top: 50px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .hint-box p {
            margin: 0;
            color: #333;
            line-height: 1.6;
        }

        .hint-box strong {
            color: var(--primary-color);
        }

        /* ===== ACCORDION STYLES ===== */
        .accordion-button {
            background: var(--light-bg);
            color: var(--dark-color);
            border: 1px solid var(--border-color);
            font-weight: 600;
            padding: 15px 20px;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, rgba(0, 147, 122, 0.1) 0%, rgba(69, 123, 157, 0.1) 100%);
            color: var(--primary-color);
            box-shadow: none;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }

        .accordion-body {
            padding: 20px;
            background: white;
            border-top: 1px solid var(--border-color);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .target-group-links {
                grid-template-columns: 1fr;
            }

            .core-section-grid {
                grid-template-columns: 1fr;
            }

            .service-hub-grid {
                grid-template-columns: 1fr;
            }

            .quick-access-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .sitemap-search-wrapper {
                padding: 20px;
            }

            .target-groups-section h2,
            .core-sections-section h2,
            .service-hub-section h2 {
                font-size: 1.5rem;
            }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .target-group-card,
        .core-section-card,
        .service-hub-card {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .target-group-card:nth-child(2) {
            animation-delay: 0.1s;
        }

        .target-group-card:nth-child(3) {
            animation-delay: 0.2s;
        }

        .target-group-card:nth-child(4) {
            animation-delay: 0.3s;
        }
/* ===== NAVIGATION HOVER COLORS ===== */
/* Navigation Hover-Farbe: primary-color (#00937a) statt accent-color */

/* Hauptmenü-Links beim Hover */
.navmenu a:hover,
.navmenu a:focus {
    color: var(--primary-color) !important;
}

/* Dropdown-Links beim Hover */
.navmenu .dropdown ul a:hover {
    color: var(--primary-color) !important;
    background-color: rgba(0, 147, 122, 0.05) !important;
}

/* Aktiver Link */
.navmenu .active,
.navmenu .active:focus,
.navmenu li:hover > a {
    color: var(--primary-color) !important;
}

/* Mobile Navigation Icons */
.navmenu a:hover i {
    color: var(--primary-color) !important;
}

/* Dropdown Toggle Icons */
.navmenu a:hover .toggle-dropdown {
    color: var(--primary-color) !important;
}

/* Header Social Links */
.header-social-links a:hover {
    color: var(--primary-color) !important;
}