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

a {
    text-decoration: none;
}

/* Grundlegende Einstellungen */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 0;
    margin: 0;
}

/* Header */
.header {
    text-align: center;
    background: #4CAF50;
    color: white;
    padding: 2rem 1rem;
}

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

.header p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn {
    text-decoration: none;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

/* Info Sektion */
.info-section {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.info-section h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #333;
}

/* Unterstützung */
.support-section {
    text-align: center;
    padding: 2rem 1rem;
    background: #f1f1f1;
    margin-bottom: 1rem;
}

.support-section h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.support-button {
    background-color: #FF9800;
    text-decoration: none;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.support-button:hover {
    background-color: #e68900;
}

/* Impressum */
.footer {
    background: #333;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
}

.footer a {
    color: #4CAF50;
    text-decoration: none;
}
