        .av_360_element_container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 150px;
            padding: 20px;
            box-sizing: border-box;
            margin-top: 80px;
            margin-bottom:80px;
        }
        
        .av_360_element_circle-container {
            position: relative;
            width: 540px;
            height: 540px;
            flex-shrink: 0;
        }
        
        .av_360_element_big-circle {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .av_360_element_big-circle2 {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 32px solid #05164d;
            border-radius: 50%;
            background: transparent;
            box-sizing: border-box;
            left: 0;
            top: 0;
            z-index: 1;
        }
        
        .av_360_element_small-circle {
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: #F6F9FC;
            transform: translate(-50%, -50%);
            display: grid;
            align-items: center;
            justify-content: center;
            font-size: 0.85em;
            font-weight: 700;
            z-index: 2;
            border: solid 4px #05164d;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            padding: 10px;
            box-sizing: border-box;
            color: #05164d;
        }

        .av_360_element_small-circle:hover, .av_360_element_small-circle.active {
            border: solid 4px #fff;
            background: #05164d;
            color: #fff;
        }
        
        .av_360_element_pos1 { left: 50%;      top: 2.778%; }    /* 12:00 Uhr */
        .av_360_element_pos2 { left: 83.383%;  top: 16.617%; }   /* 13:30 Uhr */
        .av_360_element_pos3 { left: 97.222%;  top: 50%; }       /* 15:00 Uhr */
        .av_360_element_pos4 { left: 83.383%;  top: 83.383%; }   /* 16:30 Uhr */
        .av_360_element_pos5 { left: 50%;      top: 97.222%; }   /* 18:00 Uhr */
        .av_360_element_pos6 { left: 16.617%;  top: 83.383%; }   /* 19:30 Uhr */
        .av_360_element_pos7 { left: 2.778%;   top: 50%; }       /* 21:00 Uhr */
        .av_360_element_pos8 { left: 16.617%;  top: 16.617%; }   /* 22:30 Uhr */
        
        .av_360_element_content-box {
            width: 500px;
            min-height: 400px;
            background: #F6F9FC;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.1);
            padding: 30px;
            box-sizing: border-box;
            border-left: 5px solid #05164d;
            position: relative;
            overflow: hidden;
        }
        
        .av_360_element_content-header {
            color: #05164d;
            margin-top: 0;
            border-bottom: 2px solid #05164d;
            padding-bottom: 15px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .av_360_element_header-icon {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }
        
        .av_360_element_content-item {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .av_360_element_content-item.active {
            display: block;
        }
        
        .av_360_element_content-text {
            line-height: 1.6;
            color: #05164d;
            font-size: 1.1em;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .av_360_element_default-content {
            text-align: center;
            padding: 40px 0;
            color: #05164d;
            font-size: 1.2em;
        }

        
        .av_360_element_default-icon {
            font-size: 48px;
            color: #05164d;
            margin-bottom:  -13px;
        }
        
        /* Zentriertes Icon */
        .av_360_element_center-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(1);
            z-index: 3;
            color: #05164d;
            transition: all 0.3s ease;
            text-align: center;
            width: 170px;
            height: 170px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }
        
        .av_360_element_center-icon img {
            width: 110px;
            height: 110px;
            object-fit: contain;
        }
        
        /* Animation für Icon-Vergrößerung */
        @keyframes pulse-360 {
            0% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.2); }
            100% { transform: translate(-50%, -50%) scale(1.1); }
        }
        
        .av_360_element_center-icon.active {
            color: #ff6b00;
            animation: pulse-360  0.5s ease forwards;
            border: 4px solid #05164d;
            box-shadow: 0 0 15px rgba(0,0,0,0.2);
            background: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
        }
        
        .av_360_element_center-icon.default {
            color: #05164d;
            border-color: #05164d;
        }

        .av_360_element_center-icon.default img {
            width: 300px;
            height: 300px;
            margin-top: -20px;
            max-width:  300px;
            }
        
        .av_360_element_default-content_text h2 {
          font-size: 4.0em;
          margin: 0px;
          color: #05164d;
          font-weight: 700;
           margin-top: -20px;
        }

         .av_360_element_default-content_text p {
    font-size: 1.4em;
    margin: 0px;
    margin-top: 12px;
    margin-bottom: -25px;
    color: #05164d;
    font-weight: normal;
        }
        
        /* Responsive Design für Bildschirme unter 1300px */
        @media (max-width: 1300px) {
            .av_360_element_container {
                flex-direction: column;
                height: auto;
                gap: 50px;
                padding: 40px 20px;
                margin-top: 20px;
                margin-bottom:20px;
            }
            
            .av_360_element_circle-container {
                margin-bottom: 30px;
            }
            
            .av_360_element_content-box {
                width: 100%;
                max-width: 600px;
            }
        }
        
        /* Optimierung für sehr kleine Bildschirme */
        @media (max-width: 670px) {
            .av_360_element_circle-container {
                width: 100%;
                max-width: 400px;
                height: 400px;
            }
            
            .av_360_element_big-circle2 {
                border-width: 25px;
            }
            
            .av_360_element_small-circle {
                width: 90px;
                height: 90px;
                font-size: 0.6em;
            }
            
            .av_360_element_center-icon {
                width: 100px;
                height: 100px;
            }
            
            .av_360_element_center-icon img {
                width: 70px;
                height: 70px;
            }
            
            .av_360_element_center-icon.default img {
                width: 200px;
                height: 200px;
            }
        }

        /* Optimierung für sehr sehr kleine Bildschirme */
        @media (max-width: 500px) {
            .av_360_element_circle-container {
                width: 100%;
                max-width: 280px;
                height: 280px;
            }
            
            .av_360_element_big-circle2 {
                border-width: 20px;
            }
            
            .av_360_element_small-circle {
                width: 72px;
                height: 72px;
                font-size: 0.5em;
            }
            
            .av_360_element_center-icon {
                width: 72px;
                height: 72px;
            }
            
            .av_360_element_center-icon img {
                width: 55px;
                height: 55px;
            }
            
            .av_360_element_center-icon.default img {
                width: 130px;
                height: 130px;
            }
        .av_360_element_content-text {
            font-size: 1.0em;
        }
        
        }
        
        /* Mobile Accordion Styles (376px und kleiner) */
        @media (max-width: 376px) {
            .av_360_element_circle-container {
                display: none;
            }
            
            .av_360_element_container {
                flex-direction: column;
                height: auto;
                gap: 20px;
                padding: 20px;
            }
            
            .av_360_element_content-box {
                width: 100%;
                min-height: auto;
                padding: 0;
                border-left: none;
                box-shadow: none;
            }
            
            .av_360_element_default-content {
                display: none;
            }
            
            .av_360_element_accordion-container {
                display: block;
                width: 100%;
            }
            
            .av_360_element_accordion-item {
                border-bottom: 1px solid #ddd;
                overflow: hidden;
            }
            
            .av_360_element_accordion-header {
                padding: 15px;
                margin: 0;
                background: #F6F9FC;
                cursor: pointer;
                display: flex;
                align-items: center;
                gap: 10px;
                position: relative;
            }
            
            .av_360_element_accordion-header::after {
                content: '\f078';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                position: absolute;
                right: 15px;
                transition: transform 0.3s ease;
            }
            
            .av_360_element_accordion-item.active .av_360_element_accordion-header::after {
                transform: rotate(180deg);
            }
            
            .av_360_element_accordion-content {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                background: white;
                padding: 0 15px;
            }
            
            .av_360_element_accordion-item.active .av_360_element_accordion-content {
                max-height: 1000px;
                padding: 15px 15px 15px;
                padding: 14px 15px 15px;
                background: #f9f9f9;
                font-size: 0.9em;
            }
            
            .av_360_element_accordion-icon {
                width: 30px;
                height: 30px;
                object-fit: contain;
            }
            
         /* NEUE REGEL: Content-Items in Mobile ausblenden */
            .av_360_element_content-item {
                display: none !important;
            }      
        }