 @font-face {
  font-family: 'Montserrat';
  src: url('../Fonts/montserrat-v31-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: block;
} 

@font-face {
  font-family: 'Montserrat';
  src: url('../Fonts/montserrat-v31-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: block;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}


.starttext {
        max-width: 80%;
    }


h1 {
    position: relative;
    font-size: clamp(44px, 12vw, 62px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
    padding-left: 0;
    text-align: center;
}

h2 {
    position: relative;
    font-size: clamp(34px, 9vw, 50px);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
    color: #eeeeee;
    padding-left: 0;
    text-align: center;
    z-index: 11;
}

h3 {
    position: relative;
    font-size: clamp(22px, 6vw, 36px);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-align: left;
    padding-left: 0;
}

h4 {
    font-size: clamp(24px, 6vw, 40px);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 20px;
    color: #eeeeee;
    padding-left: 0;
    text-align: left;
    z-index: 11;
}

p {
    position: relative;
    font-size: clamp(16px, 5vw, 20px);
    z-index: 100;
    text-align: center;
    padding-left: 0;
}

ul {
    font-size: clamp(14px, 5vw, 24px);
    z-index: 100;
    text-align: center;
    padding-left: 0;
    list-style-position: inside;
}


.legal_text
{
    width: 100%;
    position: relative;
    min-height: 100svh; /* Fallback */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 15px 5px 15px;
    background-color: #0d3c68; 
}


/* Überschriften */
.legal_text h1 {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.legal_text h2 {
    color: #ffffff;
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.legal_text h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Einheitliche Textgröße (1rem / 16px) */
.legal_text p,
.legal_text ul,
.legal_text ol,
.legal_text li {
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e6ed;
}

/* Absätze */
.legal_text p {
    margin-bottom: 1rem;
    max-width: 800px;
}

/* Listen */
/* Zentrierte Listen ohne Spiegelstriche/Punkte */
.legal_text ul, 
.legal_text ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 1rem;
    text-align: left;
    max-width: 800px;
    width: 100%;
}

.legal_text li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #e0e6ed;
}

/* Links */
.legal_text a {
    color: #64b5f6;
    text-decoration: underline;
}

.legal_text a:hover {
    color: #90caf9;
}

/* Hervorhebungen */
.legal_text strong, 
.legal_text b {
    color: #ffffff;
    font-weight: 600;
}


.footer {
    width: 100%;
    background: #1c1b1b;
    color: #a0a0a5;
    padding: 30px 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

