/* Grund-Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #081826;
    color: #ffffff;
}

/* Header */
.site-header {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(to bottom, #4fa3ff, #1f5fa3);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.site-header h1 {
    font-size: 2rem;
}

/* Hauptbereich */
.tf-section {
    background: linear-gradient(to bottom, #4fa3ff 0%, #1f5fa3 50%, #0b1c2d 100%);
    padding: 4rem 2rem;
    color: #ffffff;
    min-height: 100vh;
}

.tf-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Überschriften */
h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Paragraphen */
p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

/* Listen */
ul {
    margin: 1rem 0 2rem 1.25rem;
    list-style-type: disc;
}

ul li {
    margin-bottom: 0.75rem;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #0b1c2d;
    color: #cccccc;
    font-size: 0.9rem;
}
