/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../webfonts/inter-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../webfonts/inter-v19-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #222;
    line-height: 1.6;
}

header {
    background-color: #004879;
    color: white;
    padding: 4rem 2rem 2rem;
    text-align: center;
}

    header h1 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

/*nav {
            background-color: #003455;
            display: flex;
            justify-content: center;
            gap: 2rem;
            padding: 1rem;
        }*/
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #003455;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.nav-center {
    display: flex;
    gap: 2rem;
    margin: 0 auto;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

    nav a:hover {
        text-decoration: underline;
    }

.top-link {
    margin-left: auto;
    font-size: 1.2rem;
}

main {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

section {
    margin-bottom: 3rem;
}

    section[id] {
        scroll-margin-top: 100px;
    }


h2 {
    color: #004879;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

ul {
    padding-left: 1.5rem;
}

    ul li {
        margin-bottom: 0.5rem;
    }

.image-blocks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 600px) {
    .image-blocks {
        flex-direction: row;
    }
}

.image-blocks picture,
.image-blocks img {
    flex: 1;
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    height: 250px;
}

/*                .image-blocks picture img {
                    width: 100%;
                    height: 250px;
                    object-fit: cover;
                    border-radius: 8px;
                }
*/
.cta-button {
    display: inline-block;
    background-color: #004879;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1.5rem;
}

    .cta-button:hover {
        background-color: #0060a0;
    }

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

input, textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

    input[type="submit"] {
        background-color: #004879;
        color: white;
        cursor: pointer;
        border: none;
        font-weight: 600;
    }

        input[type="submit"]:hover {
            background-color: #0060a0;
        }

.ds-hinweis {
    font-size: 0.9rem;
}

.toggle-link {
    color: #004879;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}

#datenschutz-text {
    display: none;
    margin-top: 1rem;
    font-size: 0.9rem;
    background: #f8f8f8;
    padding: 1rem;
    border-left: 4px solid #004879;
}

.success-message {
    background-color: #e6f7e6;
    color: #2e7d32;
    padding: 1rem;
    border-left: 4px solid #2e7d32;
    margin-top: 1rem;
    font-weight: 600;
}

footer {
    background-color: #f0f0f0;
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #555;
}

.disclaimer-section {
    background-color: #f9f9f9;
    border-left: 4px solid #004879;
    padding: 1.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.5;
    border-radius: 4px;
}


