/* Grunddesign & Schriftarten */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Layout Container */
.container {
    max-width: 680px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    flex: 1;
}

/* Badge / Kategorie */
.badge {
    display: inline-block;
    background-color: #e2e8f0;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Typografie */
h1 {
    font-size: 2.25rem;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 1rem;
    font-weight: 700;
}

.description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 2rem;
}

/* Haupt-Button (CTA) */
.cta-button {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.cta-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

/* SEO Section */
.seo-section {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.seo-section h2, .faq-section h2 {
    font-size: 1.35rem;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.seo-section p {
    color: #475569;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    margin-top: 2.5rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.05rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 1rem;
    font-size: 0.875rem;
    color: #94a3b8;
    border-top: 1px solid #e2e8f0;
    background-color: #ffffff;
}

footer a {
    color: #64748b;
    text-decoration: none;
}

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