 /* ================================ Hero Section ================================ */
    
    
    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f5f7fa;
        }




          /* Hero Section */
        .hero-section {
            position: relative;
            height: 70vh;
            min-height: 500px;
            background: linear-gradient(135deg, #0066cc 0%, #00cccc 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1600');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            padding: 40px 20px;
            max-width: 1000px;
            animation: fadeInDown 1s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: 64px;
            font-weight: 800;
            margin-bottom: 20px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 24px;
            font-weight: 300;
            margin-bottom: 30px;
            opacity: 0.95;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero-description {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-icons {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .hero-icon-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            animation: fadeInUp 1s ease-out;
        }

        .hero-icon-item:nth-child(1) { animation-delay: 0.2s; }
        .hero-icon-item:nth-child(2) { animation-delay: 0.4s; }
        .hero-icon-item:nth-child(3) { animation-delay: 0.6s; }

        .hero-icon-circle {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            transition: all 0.4s;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .hero-icon-circle:hover {
            transform: scale(1.1) translateY(-5px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .hero-icon-label {
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }


    /* ================================ Mission, Vision und Values ================================ */





        .sections-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 20px;
        }

        .section-grid {
            display: flex;
            flex-direction: column;
            gap: 60px;
            margin-bottom: 60px;
        }

        .section-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            opacity: 0;
            animation: fadeInUp 0.8s forwards;
            width: 100%;
        }

        .section-card:nth-child(1) { animation-delay: 0.1s; }
        .section-card:nth-child(2) { animation-delay: 0.2s; }
        .section-card:nth-child(3) { animation-delay: 0.3s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .section-image {
            height: 280px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .section-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 102, 204, 0.7), rgba(0, 204, 204, 0.7));
            transition: opacity 0.4s;
        }

        .section-card:hover .section-image::before {
            opacity: 0.9;
        }

        .section-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 80px;
            color: white;
            z-index: 1;
            transition: all 0.4s;
        }

        .section-card:hover .section-icon {
            transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
        }

        .section-content {
            padding: 35px;
        }

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a3a52;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #0066cc, #00cccc);
            border-radius: 2px;
        }

        .section-text {
            color: #666;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .read-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            background: linear-gradient(135deg, #0066cc, #00cccc);
            color: white;
            border: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
        }

        .read-more-btn:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
        }

        .read-more-btn i {
            transition: transform 0.3s;
        }

        .read-more-btn:hover i {
            transform: translateX(5px);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s;
            overflow-y: auto;
            padding: 20px;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .modal-content {
            background: white;
            border-radius: 25px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.8);
            transition: transform 0.3s;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
        }

        .modal.active .modal-content {
            transform: scale(1);
        }

        .modal-header {
            background: linear-gradient(135deg, #0066cc, #00cccc);
            color: white;
            padding: 40px;
            border-radius: 25px 25px 0 0;
            position: relative;
        }

        .modal-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .modal-subtitle {
            font-size: 18px;
            opacity: 0.9;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            font-size: 28px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 45px;
        }

        .modal-section {
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid #eee;
        }

        .modal-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .modal-section-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a3a52;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .modal-section-title i {
            color: #0066cc;
            font-size: 28px;
        }

        .modal-section-text {
            color: #555;
            font-size: 16px;
            line-height: 1.9;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .sections-container {
                padding: 40px 15px;
            }

            .section-grid {
                gap: 40px;
            }

            .section-image {
                height: 220px;
            }

            .section-icon {
                font-size: 60px;
            }

            .section-title {
                font-size: 24px;
            }

            .modal-header {
                padding: 30px 25px;
            }

            .modal-title {
                font-size: 28px;
            }

            .modal-body {
                padding: 30px 25px;
            }

            .modal-section-title {
                font-size: 20px;
            }
        }

        /* Custom Scrollbar for Modal */
        .modal-content::-webkit-scrollbar {
            width: 8px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #0066cc, #00cccc);
            border-radius: 4px;
        }