body {
    background: transparent url('../img/fabric-vision-background.webp') 0% 0% no-repeat padding-box;
    opacity: 1;
    min-height: 100vh;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    /*
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(28,40,96,0.18);
    padding: 48px 32px 32px 32px;
    margin-top: 60px;
    */
    text-align: center;
    max-width: 600px;
    width: 90%;
}

.logo {
    width: 260px;
    margin-bottom: 3px;
}

h1 {
    color: #1c2860;
    font-size: 2.2rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.title {
    color: #1C2860;
    font-weight: bold;
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.subtitle {
    color: #1C2860;
    font-size: 1.15rem;
    margin-bottom:32px;
    margin-top: 0px;
}

.contact {
    color: #1C2860;
    font-weight: bold;
    font-size: 1.15rem;
    margin-bottom: 32px;
    text-decoration: none;
}

.impressum-link {
    display: inline-block;
    margin-top: 12px;
    color: #1c2860;
    background: #fff;
    border: 2px solid #1c2860;
    border-radius: 6px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    text-decoration: none;
}
.impressum-link:hover {
    background: #1c2860;
    color: #fff;
    border-color: #359d34;
}
.policy-link {
    display: inline-block;
    margin-top: 12px;
    color: #1c2860;
    background: #fff;
    border: 2px solid #1c2860;
    border-radius: 6px;
    padding: 8px 22px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    text-decoration: none;
}
.policy-link:hover {
    background: #1c2860;
    color: #fff;
    border-color: #359d34;
}

footer {
    margin-top: 48px;
    padding: 24px 0 16px 0;
    background: rgba(28,40,96,0.08);
    width: 100vw;
    text-align: center;
}
footer h2 {
    color: #1c2860;
    margin-bottom: 8px;
    font-size: 1.1rem;
}
footer p {
    color: #222;
    font-size: 0.98rem;
    margin: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(28,40,96,0.25);
    justify-content: center;
    align-items: center;
}
.modal.show {
    display: flex;
}
.modal-content {
    background: #fff;
    margin: auto;
    padding: 32px 24px 24px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(28,40,96,0.18);
    max-width: 350px;
    width: 90vw;
    text-align: center;
    position: relative;
}
.modal-contentpolicy {
    background: #fff;
    margin: auto;
    padding: 32px 24px 24px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(28,40,96,0.18);
    max-width: 95vh;
    width: 90vw;
    text-align: left;
    position: relative;
}
.close {
    position: absolute;
    right: 18px;
    top: 12px;
    font-size: 1.6rem;
    color: #1c2860;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s;
}
.close:hover {
    color: #359d34;
}

@media (max-width: 600px) {
    .container {
        padding: 32px 8vw 24px 8vw;
        max-width: 70%;
        margin: auto;
    }
    .logo {
        width: 220px;
    }
    h1 {
        font-size: 1.3rem;
    }
    .title {
        color: #1C2860;
        font-weight: bold;
        font-size: 1.15rem;
        margin-bottom: 32px;
    }
    .subtitle {
        font-size: 1rem;
    }
    .modal-content {
        padding: 18px 6vw 18px 6vw;
        max-width: 98vw;
    }
}