        *, *::before, *::after { box-sizing: border-box; }
        .cta-button {
            background: #1a1a1a;
            color: #fbbf24;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            color: #ffffff;
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(251, 191, 36, 0.4);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            color: #1a1a1a;
            padding: 8rem 5% 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            overflow-x: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 70%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to bottom right, transparent 49%, #ffffff 50%);
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            color: #2d2d2d;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Story Section */
        .story-section {
            max-width: 1000px;
            margin: 5rem auto;
            padding: 0 5%;
        }

        .story-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .story-header h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .story-header p {
            font-size: 1.2rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto;
        }

        .story-content {
            background: white;
            border: 2px solid #fef3c7;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
        }

        .story-content p {
            font-size: 1.15rem;
            line-height: 1.9;
            color: #555;
            margin-bottom: 1.5rem;
        }

        .story-content strong {
            color: #1a1a1a;
            font-weight: 600;
        }


        /* Mission/Vision Section */
        .mission-section {
            background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
            padding: 5rem 5%;
            margin: 5rem 0;
            position: relative;
        }

        .mission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top right, transparent 49%, #ffffff 50%);
        }

        .mission-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        .mission-card {
            background: white;
            border: 2px solid #fef3c7;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
        }

        .mission-card h3 {
            font-size: 2rem;
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .mission-icon {
            font-size: 2.5rem;
        }

        .mission-card p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
        }

        /* Team Section */
        .team-section {
            max-width: 1400px;
            margin: 5rem auto;
            padding: 0 5%;
        }

        .team-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .team-header h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .team-header p {
            font-size: 1.2rem;
            color: #555;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .team-card {
            background: white;
            border: 2px solid #fef3c7;
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s;
            box-shadow: 0 4px 20px rgba(251, 191, 36, 0.1);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.25);
            border-color: #fbbf24;
        }

        .team-avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            font-weight: 700;
            color: #1a1a1a;
            overflow: hidden;
            border: 4px solid white;
            box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
        }

        .team-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Bild wird sauber zugeschnitten */
        }

        .team-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.5rem;
        }

        .team-role {
            color: #f59e0b;
            font-weight: 600;
            font-size: 1.05rem;
            margin-bottom: 1rem;
        }

        .team-bio {
            color: #555;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .team-social {
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
            border: 2px solid #fef3c7;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #1a1a1a;
            transition: all 0.3s;
        }

        .social-link:hover {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            border-color: #fbbf24;
            transform: translateY(-3px);
        }

        /* Values Section */
        .values-section {
            max-width: 1400px;
            margin: 5rem auto;
            padding: 0 5%;
        }

        .values-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .values-header h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .value-card {
            background: linear-gradient(to bottom, #fffbeb 0%, #ffffff 100%);
            border: 2px solid #fef3c7;
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(251, 191, 36, 0.2);
        }

        .value-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
        }

        .value-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 1rem;
        }

        .value-card p {
            color: #555;
            line-height: 1.7;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
            padding: 5rem 5%;
            margin: 0rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(to top right, transparent 49%, #ffffff 50%);
        }

        .cta-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #1a1a1a;
            font-weight: 800;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: #2d2d2d;
            margin-bottom: 2rem;
        }

        .btn-primary {
            background: #1a1a1a;
            color: #fbbf24;
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            display: inline-block;
        }

        .btn-primary:hover {
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .story-content { padding: 1.5rem; }
            .mission-container {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .nav-links {
                display: none;
            }

            .hero::after,
            .cta-section::before,
            .mission-section::before {
                background: linear-gradient(to bottom, transparent 49%, #ffffff 50%);
            }
        }