*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Segoe UI, Arial;
    background:#f5f7fa;
    color:#222;
}

/* Language Page */
.lang-select{
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
    text-align:center;
}

.center-box img{
    width:120px;
}

.logo-link{
    display:flex;
    align-items:center;
    gap:10px;

    color:white;
    text-decoration:none;
}

.logo-link:hover{
    opacity:0.9;
}

.lang-buttons{
    margin-top:20px;
}

.btn{
    display:inline-block;
    padding:12px 25px;
    margin:10px;
    background:#1e3a5f;
    color:white;
    text-decoration:none;
    border-radius:8px;
}

.button-container{
    text-align:center;
    margin:30px 0;
}

.download-buttons{
    display:flex;
    justify-content:center;
    gap:10px;

    margin:30px 0;
}

@media(max-width:600px){

    .download-buttons{
        flex-direction:column;
        align-items:center;
    }

}

.handbuch,
.download,
.kaufen{
    text-align:center;
    padding:40px 20px;
}


/* Header */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:#1e3a5f;
    color:white;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    width:40px;
    height:40px;
}

/* Hero */
.hero{
    padding:120px 40px;
    text-align:center;
    background:linear-gradient(135deg,#1e3a5f,#2b6cb0);
    color:white;
}

/* Products */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    padding:60px;
}

.card{
    padding:25px;
    border-radius:12px;
    color:white;
}

.moon{background:#1a202c;color:#f5f7fa}
.ide{background:#f83909;color:#f5f7fa}
.ice{background:#f3f044;color:#080808}

.ice a,
.ide a,
.moon a{
    display:inline-block;
    margin-top:15px;
    padding:10px 15px;
    border-radius:8px;
    background:white;
    color:black;
    text-decoration:none;
}

.product-image{
    width:100%;
    background:white;
    padding:8px;

    border-radius:12px;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.15);

    margin-bottom:20px;
}

.kontakt{
    padding:100px 40px;
    background:#eef2f7;
    text-align:center;
}

.kontakt h2{
    margin-bottom:40px;
    font-size:2rem;
}

/* Die eigentliche Karte */
.kontakt-card{
    max-width:500px;
    margin:0 auto;

    background:white;

    padding:35px;

    border-radius:16px;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.08);

    text-align:center;
}

/* Linien-Optik */
.kontakt-card hr{
    margin:20px 0;
    border:none;
    border-top:1px solid #ddd;
}

/* Abstände zwischen Zeilen */
.kontakt-card p{
    margin:6px 0;
    font-size:0.95rem;
}

/* E-Mail-Link schöner machen */
.kontakt-card a{
    color:#1e3a5f;
    font-weight:bold;
    text-decoration:none;
}

.kontakt-card a:hover{
    text-decoration:underline;
}

/* Footer */
footer{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 40px;

    background:#1e3a5f;
    color:white;
}

footer a{
    color:white;
    text-decoration:none;
    margin-right:10px;
}

footer a:hover{
    text-decoration:underline;
}

/* Copyright rechts */
.footer-right{
    text-align:right;
}

a{
    color:inherit;
}

.legal-page{
    padding:60px 20px;
    background:#eef2f7;
    min-height:calc(100vh - 140px);
}

.legal-card{
    max-width:900px;
    margin:0 auto;

    background:white;

    padding:40px;

    border-radius:16px;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.08);
}

.legal-card h1{
    margin-bottom:30px;
    color:#1e3a5f;
}

.legal-card h2{
    margin-top:30px;
    margin-bottom:10px;
    color:#1e3a5f;
}

.legal-card p{
    margin-bottom:15px;
    line-height:1.7;
}

.legal-card a{
    color:#1e3a5f;
    text-decoration:none;
}

.legal-card ul{
    margin:10px 0 15px 25px;
}

.legal-card li{
    margin-bottom:5px;
}

.legal-card a:hover{
    text-decoration:underline;
}

.manual-section{
    max-width:1000px;
    margin:50px auto;
    padding:0 20px;
}

.manual-section h2{
    color:#1e3a5f;
    margin-bottom:20px;
}

.manual-section h3{
    margin-top:25px;
    margin-bottom:10px;
}

.manual-section p{
    line-height:1.7;
    margin-bottom:15px;
}

.manual-section ul{
    margin-left:25px;
    margin-bottom:20px;
}

.manual-section li{
    margin-bottom:5px;
}

.bilder-section{
    max-width:1000px;
    margin:50px auto;
    padding:0 20px;
}

.bilder-section h2{
    color:#1e3a5f;
    margin-bottom:20px;
}

.bilder-section h3{
    margin-top:25px;
    margin-bottom:10px;
}

.bilder-section p{
    line-height:1.7;
    margin-bottom:15px;
}

.bilder-section ul{
    margin-left:25px;
    margin-bottom:20px;
}

.bilder-section li{
    margin-bottom:5px;
}

.bilder-image{
    width:100%;
    background:white;
    padding:8px;

    border-radius:12px;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.15);

    margin-bottom:20px;
}

/* Previews */
.preview-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(300px,1fr));

    gap:20px;

    max-width:1500px;
    margin:0 auto;

    padding:20px;
}

.preview-card{
    overflow:hidden;

    border-radius:12px;

    background:white;

    box-shadow:
        0 4px 12px rgba(0,0,0,0.12);
}

.preview-product-image{
    display:block;

    width:100%;
    height:auto;

    transition:transform .3s;
}

.preview-product-image:hover{
    transform:scale(1.03);
}
