#header{
    width: 100%;
    height: 100vh;
    background-image: url('../images/euaiditor-cover.png');
    background-size: cover;
    background-position: center;
}
.container-header{
    position: absolute;
    right: 5%; 
    top: 35%;    /* Startpunkt bei 25% der Höhe */
    transform: translateY(-50%); /* Zieht den Container um die Hälfte seiner eigenen Höhe nach oben, um ihn exakt zu zentrieren */
    /* GRÖSSE & STYLING */
    width: 850px; /* Feste Breite oder z.B. 30% der Sektionsbreite */
    padding: 30px;
}


.header-text{
    flex: 1; /* Nimmt verfügbaren Platz ein */
    padding-right: 40px; /* Abstand zum neuen Container */

}
.content{
    max-width: 800px;
    margin-left: 30px;
    
}

.content h1{
    font-size: 40px;
    color: var(--text-light);
    text-align: center;
    font-weight: 600;
}

.content h2{
    font-size: 7rem;
    animation-delay:  0.5s;
    font-weight: 500;
    color: var(--text-light);
}

.content p{
    margin-top: 30px;
    animation-delay:  0.5s;
    color: var(--text-light);
    font-size: 1.9rem;
    margin-left: 20px;
}
.anim{
    opacity: 0;
    transform: translateY(30px);
    animation: moveup 0.5s linear forwards;
}
@keyframes moveup{
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.slide-container {
/* Die Breite und Polsterung kannst du so lassen. */
    display: flex;
    max-width: 2300px; 
    padding: 60px;
    box-sizing: border-box;
    /* Optional: Um die Folie nicht zu breit zu machen und das Zentrieren zu sehen */
    max-height: 80vh;
    margin-bottom: 80px;
}

/* Linker Inhaltsbereich */
.content-left {
    flex: 1; /* Nimmt den größten Teil des Platzes ein */
    padding-right: 50px;
    margin-left: 320px;
}

.subtitle {
    font-size: 1.8rem; /* Größer als normaler Text */
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0.8; /* Leicht gedämpfte Farbe für den Untertitel */
}

.title {
    font-size: 5rem; /* Sehr groß, um die Hauptüberschrift hervorzuheben */
    font-weight: 800;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 3rem;
    position: relative; /* Für den kleinen pinken Kreis unter "Text fields" */
}
.description {
    font-size: 1.5rem; /* Etwas größer als normaler Text */
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #333; /* Dunklere Farbe für bessere Lesbarkeit */
}


/* Feature-Liste */
.features {
    list-style: none; /* Entfernt die Standard-Aufzählungszeichen */
    padding: 0;
}

.features li {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.features-vorteile {
    list-style: none; /* Entfernt die Standard-Aufzählungszeichen */
    padding: 0;
}
.features-vorteile li {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.check-icon {
    /* Stil für das Material Icon "check" */
    font-size: 2.2rem;
    color: #aea27a; /* Helles Grün, wie im Material Design oft verwendet */
    margin-right: 15px;
}

/* Rechter Inhaltsbereich für das Bild */
.content-right {
    flex: 0.7; /* Nimmt etwas weniger Platz als der linke Bereich ein */
    display: flex; /* Um das Bild zu zentrieren */
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    min-height: 400px;
    overflow: hidden; /* Verhindert, dass das Bild über den Container hinausgeht */
}

.right-image {
    width: 100%; /* Das Bild füllt die Breite des Containers aus */
    height: 90%; /* Das Bild füllt die Höhe des Containers aus */
    display: block; /* Entfernt eventuelle zusätzliche Leerzeichen unter dem Bild */
    border-radius: 30px; 
}


/* Anpassungen für kleinere Bildschirme */
@media (max-width: 1024px) {
    .slide-container {
        flex-direction: column; /* Stapelt die Elemente untereinander */
        padding: 40px;
        width: 100%;
    }
    
    .content-left {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .content-right {
        min-height: 300px; /* Reduziere die Höhe auf kleineren Bildschirmen */
        margin-top: 20px; /* Abstand nach oben, wenn die Spalten gestapelt sind */
    }

    .title {
        font-size: 3.5rem;
    }
    
    .features li {
        font-size: 1.3rem;
    }
}


.timeline {
    position: relative;
    max-width: 1600px;
    margin: 100px auto;
}

.container{
    padding: 10px 50px;
    position: relative;
    width: 50%;
    animation: movedown 3s linear forwards;
    opacity: 0;
}
@keyframes movedown{
    0%{
        transform: translateY(-50px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}

.container:nth-child(1){
    animation-delay: 0s;
}
.container:nth-child(2){
    animation-delay: 1s;
}
.container:nth-child(3){
    animation-delay: 2s;
}
.container:nth-child(4){
    animation-delay: 3s;
}
.container:nth-child(5){
    animation-delay: 4s;
}
.container:nth-child(6){
    animation-delay: 5s;
}
.container:nth-child(7){
    animation-delay: 6s;
}
.container:nth-child(8){
    animation-delay: 7s;
}

.text-box{
    padding: 20px 30px;
    border-radius: 6px;
    font-size: 15px;
}
.left-container{
    left: 0;
}
.right-container{
    left: 50%;
} 
.container img{
    position: absolute;
    width: 40px;
    border-radius: 50%;
    right: -20px;
    top: 32px;
    z-index: 10; 
}

.right-container img{
    left: -20px;
}

.timeline::after{
    content: '';
    position: absolute;
    width: 6px;
    height: 100%;
    background: #aca89c56;
    top: 0;
    left: 50%;
    margin-left: -3px;
    z-index: -1;
    animation:  moveLine 15s linear forwards;
}

@keyframes moveLine{
    0%{
        height: 0%;
    }
    100%{
        height: 100%;
    }
}

.text-box h2{
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 2rem;
}
.text-box p{
    font-size: 1.5rem; /* Etwas größer als normaler Text */
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #333; /* Dunklere Farbe für bessere Lesbarkeit */
}

.left-container-arrow{
    width: 0;
    height: 0;
    position: absolute;
    top: 38px;
    z-index: 1;
    right: 36px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #147681;
}
.right-container-arrow{
    width: 0;
    height: 0;
    position: absolute;
    top: 38px;
    z-index: 1;
    left: 36px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #147681;
}


/* Der Container für die Liste */
.checkmark-list {
    list-style: none; /* Entfernt die Standard-Aufzählungszeichen */
    padding: 0;      /* Entfernt den Standard-Innenabstand */
    margin: 20px;    /* Fügt etwas Abstand zur Seite hinzu (optional) */
    font-size: 1.6em; /* Macht den Text etwas größer (optional) */
}

/* Die einzelnen Listenelemente */
.checkmark-list li {
    padding-left: 2em; /* Schafft Platz für das Häkchen-Symbol */
    position: relative; /* Wichtig, damit das Pseudo-Element relativ dazu positioniert werden kann */
    margin-bottom: 0.8em; /* Abstand zwischen den Listenelementen */
    line-height: 1.4; /* Verbessert die Lesbarkeit bei längeren Zeilen */
}

/* Das Pseudo-Element für das Häkchen-Symbol */
.checkmark-list li::before {
    content: '\2713'; /* Unicode-Häkchen-Symbol (✓) */
    color: #aea27a; /* Stellt die Farbe auf ein helles Blau ein (wie im Bild) */
    font-weight: bold; /* Macht das Häkchen dicker */
    position: absolute; /* Positioniert das Symbol frei */
    left: 0; /* Positioniert das Symbol ganz links im padding-left Bereich */
    top: 0; /* Richtet es an der obersten Linie des Textes aus */
}


.timeline-end {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  position: relative;
}

.end-circle {
  width: 20px;
  height: 20px;
  background-color: #147681;
  border-radius: 50%;
  margin-bottom: 10px;
}

.end-text {
    font-weight: 600;
    font-size: 2rem;
    color: #0b1c29;
    text-align: center;
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
}

@media screen and (max-width: 600px) {
    .timeline{
        margin: 10px auto;
    }
    .timeline::after{
        left: 31px;
    }
    .container{
        width: 100%;
        padding-left: 80px;
        padding-right: 25px;
    }
    .text-box{
        font-size: 14px;
    }
    .text-box p{
        font-size: 1.2rem;
        line-height: 2rem;
    }
     .right-container{
        left: 0%;
     }
     .left-container img, .right-container img{
        left: 10px;
     }

     .left-container-arrow, .right-container-arrow{
        border-right: 15px solid red;
        border-left: 0;
        left: 65px;
     } 
     .checkmark-list li{
        font-size: 14px;
     }
}



.ai-features-section {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto; /* Zentriert den Hauptcontainer */
}

/* === HEADER BEREICH (TEXT ÜBER DEN KARTEN) === */

.header-content {
    margin-bottom: 60px;
}

.tagline {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d; /* Graue Farbe für 'Highlights' */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.header-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #212529;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 20px;
}

.description {
    font-size: 1.3rem;
    color: #495057;
    line-height: 1.5;
    max-width: 600px; /* Begrenzt die Breite der Beschreibung */
}


/* === FLEX-GRID FÜR DIE 3 KARTEN === */

.three-feature-grid {
    display: flex;
    flex-wrap: wrap; /* Erlaubt das Umbrechen auf kleineren Bildschirmen */
    gap: 90px; /* Abstand zwischen den Karten */
    width: 100%;
}

.feature-card {
    /* Nimmt 1/3 der Breite abzüglich des Abstands (30px) */
    flex: 1 1 calc(33.333% - 20px); 
    min-width: 280px; /* Stellt sicher, dass die Karten nicht zu klein werden */
    background-color: #ffffff; /* Weißer Karten-Hintergrund */
    border-radius: 20px; /* Starke Abrundung */
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Dezenter Schatten */
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px); /* Leichter Schwebe-Effekt */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212529;
    margin-top: 15px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.5;
}

/* === VISUALS/BILDER-Platzhalter (Stile für die Kartengrafiken) === */
.card-visual {
    height: 250px; /* Feste Höhe für die Grafik */
    background-color: #e9ecef; /* Neutraler Hintergrund-Platzhalter */
    border-radius: 10px;
    margin-bottom: 15px;
    /* Da die Grafiken komplex sind, nutzen wir Farben als Platzhalter für den Look */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Du kannst spezifische Platzhalter-Farben hinzufügen */
.visual-llm { 
    /* Hier müsstest du dein Bild oder eine SVG-Grafik einfügen, um das exakte Design zu bekommen */
    color: white; 
}

.visual-simplicity {
    border: 1px dashed #ced4da;
}



/* === RESPONSIVE ANPASSUNGEN === */

@media (max-width: 992px) {
    .three-feature-grid {
        flex-direction: column; /* Stapelt alle Karten untereinander */
        gap: 20px;
    }
    
    .feature-card {
        flex: 1 1 100%; /* Jede Karte nimmt die volle Breite ein */
    }

    .header-content h1 {
        font-size: 2.5rem;
    }
}


.card-visual-container {
    height: 170px; /* Feste Höhe, damit die Karten alle gleich hoch sind */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden; /* Wichtig, um die Ecken bei den Bildern abzurunden */
    background-color: #f8f9fa; /* Leichter Hintergrund, falls Bild nicht sofort lädt */
}

.card-image {
    width: 100%; /* Das Bild füllt die Breite des Containers */
    height: 100%; /* Das Bild füllt die Höhe des Containers */
    
    /* WICHTIG: Stellt sicher, dass das Bild den Container ohne Verzerrung füllt. */
    object-fit: cover; 
    
    /* Fügt den Bildern eine leichte Abrundung hinzu, die durch overflow: hidden im Container abgedeckt wird */
    border-radius: 10px; 
    display: block;
}


