  /* ===================== HERO SECTION ================================================ */
        .agb-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .agb-section {
            width: 100%;
            margin: 40px 0;
        }

        .agb-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            animation: agb-slideInUp 0.8s ease-out;
        }

        @keyframes agb-slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .agb-content {
            padding: 60px 50px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
        }

        .agb-content h1 {
            font-size: 2.5rem;
            color: #1a3a52;
            margin-bottom: 20px;
            font-weight: 700;
            letter-spacing: -1px;
            background: linear-gradient(135deg, #1a3a52 0%, #2d5f7f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .agb-badge {
            display: inline-block;
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            animation: agb-pulse 2s infinite;
        }

        @keyframes agb-pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
            }
        }

        .agb-content p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 30px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .agb-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
            border: none;
            cursor: pointer;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .agb-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        }

        .agb-link:active {
            transform: translateY(-1px);
        }

        .agb-link svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .agb-image {
            position: relative;
            height: 100%;
            min-height: 500px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .agb-image::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: agb-moveBackground 20s linear infinite;
        }

        @keyframes agb-moveBackground {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(50px, 50px);
            }
        }

        .agb-image-wrapper {
            position: relative;
            z-index: 2;
            text-align: center;
            animation: agb-float 3s ease-in-out infinite;
        }

        @keyframes agb-float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .agb-image img {
            max-width: 300px;
            width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
        }

        .agb-icon {
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.25);
        }

        .agb-icon svg {
            width: 60px;
            height: 60px;
            color: white;
        }

        .agb-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-top: 40px;
        }

        .agb-feature-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            color: white;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .agb-feature-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .agb-feature-item-icon {
            font-size: 2rem;
            margin-bottom: 8px;
        }

        .agb-feature-item-text {
            font-size: 0.9rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .agb-container {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .agb-content {
                padding: 40px 25px;
                order: 2;
            }

            .agb-image {
                min-height: 300px;
                order: 1;
            }

            .agb-content h1 {
                font-size: 2rem;
            }

            .agb-content p {
                font-size: 1rem;
            }

            .agb-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .agb-container {
                border-radius: 15px;
            }

            .agb-content {
                padding: 30px 20px;
            }

            .agb-content h1 {
                font-size: 1.75rem;
            }

            .agb-badge {
                font-size: 0.75rem;
                padding: 6px 12px;
            }

            .agb-link {
                padding: 12px 25px;
                font-size: 0.95rem;
            }

            .agb-features-grid {
                grid-template-columns: 1fr;
            }
        }


        /* ===================== AGB TEXT SECTION ================================================ */


          * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
        }

        .terms-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* ===== HEADER ===== */
        .terms-header {
            text-align: center;
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
            animation: slideInDown 0.8s ease-out;
        }

        .terms-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .terms-header h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .terms-header-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 2;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== INTRO SECTION ===== */
        .intro {
            background: white;
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 40px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            border-left: 5px solid #667eea;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .intro p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== MAIN CONTENT ===== */
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            margin-bottom: 60px;
        }

        .section {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .section:nth-child(1) { animation-delay: 0.3s; }
        .section:nth-child(2) { animation-delay: 0.4s; }
        .section:nth-child(3) { animation-delay: 0.5s; }
        .section:nth-child(4) { animation-delay: 0.6s; }
        .section:nth-child(5) { animation-delay: 0.7s; }
        .section:nth-child(6) { animation-delay: 0.8s; }
        .section:nth-child(7) { animation-delay: 0.9s; }
        .section:nth-child(8) { animation-delay: 1s; }
        .section:nth-child(9) { animation-delay: 1.1s; }

        .section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .section-header {
            padding: 30px;
            color: white;
            font-weight: 600;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            overflow: hidden;
        }

        .section-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
            pointer-events: none;
        }

        .section-number {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .section-title {
            position: relative;
            z-index: 1;
            flex: 1;
        }

        .section-icon {
            font-size: 1.5rem;
            position: relative;
            z-index: 1;
        }

        /* ===== SECTION COLOR VARIANTS ===== */
        .geltungsbereich .section-header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .personalvermittlung .section-header { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        .begleitung .section-header { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
        .workshops .section-header { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
        .email-werbung .section-header { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
        .datenschutz .section-header { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }
        .haftung .section-header { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); color: #333; }
        .schlussbestimmungen .section-header { background: linear-gradient(135deg, #ff9a56 0%, #ff6a88 100%); }
        .widerrufsrecht .section-header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

        .section-content {
            padding: 30px;
        }

        .section-content h3 {
            color: #1a3a52;
            margin: 20px 0 15px 0;
            font-size: 1.1rem;
        }

        .section-content h3:first-child {
            margin-top: 0;
        }

        .section-content p {
            color: #666;
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 15px;
        }

        .section-content ul,
        .section-content ol {
            margin-left: 25px;
            margin-bottom: 15px;
        }

        .section-content li {
            color: #666;
            line-height: 1.8;
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .section-content a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }

        .section-content a:hover {
            border-bottom-color: #667eea;
        }

        .highlight-box {
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
            border-left: 4px solid #667eea;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }

        .highlight-box p {
            margin: 0;
            color: #1a3a52;
            font-weight: 500;
        }

        .contact {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            padding: 50px 40px;
            border-radius: 15px;
            font-size: 1.1rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 0.8s ease-out 1.2s both;
            position: relative;
            overflow: hidden;
        }

        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact p {
            position: relative;
            z-index: 2;
            margin: 10px 0;
        }

        .contact-info {
            margin-top: 20px;
            font-size: 0.95rem;
        }

        .widerrufsformular {
            background: #f8f9fb;
            padding: 30px;
            border-radius: 12px;
            margin: 20px 0;
            border: 2px dashed #667eea;
        }

        .widerrufsformular h4 {
            color: #1a3a52;
            margin-bottom: 15px;
        }

        .widerrufsformular p {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 10px;
        }

        .form-field {
            margin: 15px 0;
        }

        .form-field label {
            display: block;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .form-field textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.95rem;
            resize: vertical;
            min-height: 100px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .terms-header h1 {
                font-size: 2.5rem;
            }

            .terms-header-subtitle {
                font-size: 1rem;
            }

            .intro {
                padding: 25px;
            }

            .intro p {
                font-size: 1rem;
            }

            .section-header {
                padding: 20px;
                font-size: 1.1rem;
            }

            .section-content {
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .terms-header {
                padding: 50px 15px;
                margin-bottom: 30px;
                border-radius: 15px;
            }

            .terms-header h1 {
                font-size: 1.8rem;
            }

            .terms-header-subtitle {
                font-size: 0.95rem;
            }

            .intro {
                padding: 20px;
                margin-bottom: 25px;
            }

            .intro p {
                font-size: 0.95rem;
            }

            .section-header {
                padding: 15px;
                font-size: 1rem;
            }

            .section-number {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }

            .section-content {
                padding: 15px;
            }

            .section-content h3 {
                font-size: 1rem;
            }

            .section-content p,
            .section-content li {
                font-size: 0.95rem;
            }

            .contact {
                padding: 30px 20px;
                font-size: 1rem;
                border-radius: 12px;
            }

            .widerrufsformular {
                padding: 20px;
            }
        }
        