* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    min-height: 100vh;
    background: #f6f5f1;
    color: #0b1a2b;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Sprachumschalter */
.language-switch {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-switch button {
    background: transparent;
    border: 2px solid #0b1a2b;
    color: #0b1a2b;
    padding: 6px 12px;
    margin-left: 6px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
}

.language-switch button.active,
.language-switch button:hover {
    background: #0b1a2b;
    color: #ffffff;
}

/* Inhalt */
.container {
    text-align: center;
    padding: 40px 20px;
}

.logo {
    max-width: 220px;
    margin-bottom: 20px;
}

/* Blitz Animation */
.bolt {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.6; }
}

h1 {
    font-size: 2.4rem;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 1.1rem;
    color: #3a4a5e;
    line-height: 1.6;
    max-width: 620px;
    margin: 0 auto;
}

.divider {
    width: 80px;
    height: 4px;
    background: #0b1a2b;
    margin: 30px auto;
    border-radius: 2px;
}

.services {
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.contact p {
    font-size: 1rem;
    margin: 5px 0;
}

footer {
    text-align: center;
    font-size: 0.85rem;
    color: #6b7280;
    padding: 20px 10px;
}