/* Dritter Container - angepasst, um unter dem Slider zu erscheinen mit gleicher Breite */
.list-container3 {
    /* Volle Breite einnehmen */
    width: 100%;
    min-width: 250px;
    padding: clamp(15px, 2vw, 25px);
    background-color: #e3f2fd;
    /* Hellblauer Hintergrund */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    outline: none;
    box-sizing: border-box;
    margin-top: clamp(15px, 2vw, 20px);
    /* Abstand zum Slider oben */
    margin-left: auto;
    margin-right: auto;
    /* Horizontal zentrieren */
    transition: all 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, box-shadow, background-color;
    transform-origin: center;
    position: relative;
    overflow: hidden;
    display: block;
    /* Als Block-Element darstellen */
    flex: none;
    /* Kein Flex-Wachstum/Schrumpfen */
    text-align: center;
    /* Gesamten Inhalt zentrieren */
}

/* Slider-Container und ListContainer3 in derselben Breite */
.container3 .slider-container,
.container3 .list-container3 {
    max-width: 100%;
    width: 100%;
}

/* Anpassungen für die Hover-Effekte von Container 3 */
.list-container3:hover {
    transform: scale(1.03) translateY(-7px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(21, 101, 192, 0.3);
    z-index: 5;
    background-color: #e0f7fa;
    border: none;
    outline: none;
}

/* Überschrift für ListContainer3 */
.list-container3 h3 {
    color: #1565c0;
    /* Blaue Überschrift */
    margin-top: 0;
    margin-bottom: clamp(10px, 1.5vw, 15px);
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    transition: color 0.75s ease, text-shadow 0.75s ease;
    font-weight: 600;
    text-align: center;
    /* Überschrift zentrieren */
}

/* Liste zentrieren */
.list-container3 .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    /* Horizontal zentrieren */
    width: fit-content;
    /* Breite an Inhalt anpassen */
    text-align: left;
    /* Nur Listentext links ausrichten */
}

/* Container-spezifische Farben für Icons in Container3 */
.list-container3 .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: clamp(8px, 1.2vw, 12px);
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.4;
    color: #333;
    justify-content: flex-start;
    /* Inhalte links ausrichten */
    transition: all 0.3s ease;
    padding: 3px 0;
}

.list-container3 .feature-list li i {
    color: #1565c0;
    /* Blaue Icons für Container 3 */
    transition: all 0.75s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: relative;
    margin-right: 10px;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    min-width: 20px;
    text-align: center;
}

/* Hover-Effekt für Listenelemente in Container3 */
.list-container3 .feature-list li:hover {
    padding-left: 10px;
    font-weight: 600;
    letter-spacing: 0.3px;
    background-color: rgba(21, 101, 192, 0.12);
    border-radius: 4px;
    color: #1565c0;
    border: none;
}

/* Hover-Effekte für Container 3 */
.list-container3:hover .feature-list li {
    color: #1565c0;
    transform: translateX(5px);
    transition: all 0.75s ease;
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.8);
    letter-spacing: 0.2px;
}

.list-container3:hover .feature-list li i {
    transform: scale(1.2) rotate(5deg);
    color: #1565c0;
    text-shadow: 0 0 10px rgba(21, 101, 192, 0.9);
}

/* Glüh-Effekt für Container 3 */
.list-container3:hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #e0f7fa, #1565c0, #e0f7fa);
    z-index: -1;
    border-radius: 10px;
    opacity: 0.25;
    filter: blur(15px);
    animation: gradientMove 4s linear infinite;
    pointer-events: none;
    border: none;
}

/* Icons für Container3 */
.list-container3 .icon-check::before {
    content: "✓";
    color: #1565c0;
}

.list-container3 .icon-star::before {
    content: "★";
    color: #b7791f;
    font-size: 115%;
}

/* Hover-Effekte für Icons */
.list-container3:hover .icon-check::before {
    color: #e3f2fd;
    text-shadow: 0 0 8px rgba(21, 101, 192, 0.7);
}

.list-container3:hover .icon-star::before {
    color: #facc15;
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.8);
}

/* Animation für Überschrift */
@keyframes headingPulseHellblau {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
        color: #1565c0;
    }

    100% {
        transform: scale(1);
    }
}

.list-container3:hover h3 {
    animation: headingPulseHellblau 2.2s ease-in-out infinite;
    color: #1565c0;
    text-shadow: 0 0 8px rgba(21, 101, 192, 0.5);
}

/* Gradient-Animation */
@keyframes gradientMove {
    from {
        background-position: 0% 0%;
    }

    to {
        background-position: 130% 0%;
    }
}

/* Für die Container-Verschachtelung */
.container3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Dot-Icon für Container3 */
.list-container3 .icon-dot::before {
    content: "•";
    color: #4b5563;
    font-size: 130%;
}

/* Hover-Effekt für Dot-Icon */
.list-container3:hover .icon-dot::before {
    color: #94a3b8;
    text-shadow: 0 0 6px rgba(148, 163, 184, 0.6);
}

/* Styling für Buttons oder Call-to-Actions innerhalb des Containers */
.list-container3 .cta-button {
    margin-top: 15px;
    padding: 8px 20px;
    background-color: #1565c0;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
    display: inline-block;
}

.list-container3 .cta-button:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive-Anpassungen */
@media (max-width: 992px) {
    .list-container3 {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }

    .list-container3 h3 {
        font-size: 1.2rem;
    }

    .list-container3:hover {
        transform: scale(1.01) translateY(-3px);
        /* Reduzierter Hover-Effekt auf kleinen Geräten */
    }

    .list-container3 .feature-list li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .list-container3 .cta-button {
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}

/* Für größere Bildschirme maximale Breite begrenzen */
@media (min-width: 1200px) and (max-width: 1599px) {
    .container3 {
        max-width: 1140px;
        margin: 0 auto;
    }

    .list-container3 {
        padding: 20px;
    }

    .list-container3 h3 {
        font-size: 1.3rem;
    }

    .list-container3 .feature-list li {
        font-size: 0.95rem;
    }
}

/* Größere Bildschirme (größere Desktops) */
@media (min-width: 1600px) and (max-width: 1919px) {
    .container3 {
        max-width: 1440px;
    }

    .list-container3 {
        padding: 25px;
    }

    .list-container3 h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .list-container3 .feature-list li {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .list-container3 .cta-button {
        padding: 10px 22px;
        font-size: 1rem;
    }
}

/* Sehr große Bildschirme (4K und größer) */
@media (min-width: 1920px) {
    .container3 {
        max-width: 1800px;
    }

    .list-container3 {
        padding: 30px;
        border-radius: 12px;
    }

    .list-container3 h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .list-container3 .feature-list li {
        font-size: 1.1rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .list-container3 .feature-list li i {
        font-size: 1.2rem;
        margin-right: 12px;
    }

    .list-container3 .cta-button {
        padding: 12px 25px;
        font-size: 1.1rem;
        margin-top: 20px;
    }
}

/* Für kleine Mobilgeräte */
@media (max-width: 480px) {
    .list-container3 {
        padding: 12px;
    }

    .list-container3 h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .list-container3 .feature-list li {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .list-container3 .feature-list li i {
        font-size: 0.9rem;
        margin-right: 8px;
    }

    .list-container3 .cta-button {
        padding: 5px 12px;
        font-size: 0.85rem;
        margin-top: 10px;
    }

    .list-container3:hover {
        transform: scale(1) translateY(-2px);
        /* Minimaler Hover-Effekt auf sehr kleinen Geräten */
    }
}

/* Verschiedene Farbvarianten für unterschiedliche Container */
.list-container3-green {
    background-color: #e8f5e9;
}

.list-container3-green h3 {
    color: #2e7d32;
}

.list-container3-green .feature-list li i,
.list-container3-green .icon-check::before {
    color: #4CAF50;
}

.list-container3-green:hover {
    background-color: #e0f2f1;
}

.list-container3-green .cta-button {
    background-color: #4CAF50;
}

.list-container3-green .cta-button:hover {
    background-color: #2e7d32;
}

.list-container3-purple {
    background-color: #f3e5f5;
}

.list-container3-purple h3 {
    color: #6a1b9a;
}

.list-container3-purple .feature-list li i,
.list-container3-purple .icon-check::before {
    color: #9C27B0;
}

.list-container3-purple:hover {
    background-color: #f5f0ff;
}

.list-container3-purple .cta-button {
    background-color: #9C27B0;
}

.list-container3-purple .cta-button:hover {
    background-color: #6a1b9a;
}

.list-container3-red {
    background-color: #ffebee;
}

.list-container3-red h3 {
    color: #b71c1c;
}

.list-container3-red .feature-list li i,
.list-container3-red .icon-check::before {
    color: #F44336;
}

.list-container3-red:hover {
    background-color: #fff0f0;
}

.list-container3-red .cta-button {
    background-color: #F44336;
}

.list-container3-red .cta-button:hover {
    background-color: #b71c1c;
}

/* Verbesserte Fokus-Zustände für Barrierefreiheit */
.list-container3:focus-within {
    outline: 2px solid #1565c0;
    outline-offset: 2px;
}

/* Reduzierte Animation auf Geräten mit Präferenz für reduzierte Bewegung */
@media (prefers-reduced-motion: reduce) {
    .list-container3 {
        transition: all 0.3s ease;
    }

    .list-container3:hover {
        transform: translateY(-3px);
    }

    .list-container3:hover .feature-list li i {
        transform: none;
    }

    .list-container3:hover h3 {
        animation: none;
    }

    .list-container3:hover::after {
        animation: none;
    }
}

/* TEST Für größere Bildschirme maximale Breite begrenzen */
@media (min-width: 1200px) {
    .container3 {
        max-width: 1140px;
        margin: 0 auto;
    }
}