.info {
    margin: 10px 0 18px 0;
    padding: 10px 14px;  
    border-radius: 8px;
    background-color: rgba(255, 248, 220, 0.4);
    color: rgb(0, 0, 139);
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.nav-list {
    list-style: none;
    padding: 10px;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-navigation {
    width: 100%;
    max-width: 1000px;   
    display: flex;
    justify-content: flex-end;
}

.info-accordion {
    margin-bottom: 5px;
    border-radius: 6px;
    background-color: rgba(255, 248, 220, 0.4); 
    color: #1f1f1f;
    overflow: hidden;
}

.info-accordion summary {
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 14px;
    background-color: rgba(255, 248, 220, 0.4);
    color: #003366;
}

.info-accordion summary:hover {
    background-color: rgba(255, 248, 220, 0.6);
}

.info-content {
    padding: 10px 14px;
    font-size: 1.1rem;
}

.info-next-btn {
    display: inline-block;
}

.tMaker {
    background-color: rgba(255, 230, 0, 0.5);
    font-weight: bold;
    padding: 0 3px;
    border-radius: 3px;
}

.info-image {
    text-align: center;
    margin: 20px 0;
}

.info-screenshot {
    max-width: 900px;     /* Begrenzung */
    width: 100%;          /* passt sich an */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.info-screenshot--mobile {
    max-width: 280px;   /* ideale Smartphone-Größe */
    width: 100%;
    height: 50%;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
