/* ============================================
   SEITEN-SPEZIFISCHE STILE
   ============================================ */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem 2rem;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-radius: 12px;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.content-section {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    margin-bottom: 2rem;
}

.content-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.content-section h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.content-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.info-box {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.info-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.info-box p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.highlight-box strong {
    color: var(--primary-color);
}

.highlight-box p {
    margin-bottom: 0.5rem;
}

.highlight-box h3 {
    color: #ffc107;
    margin-top: 0;
    margin-bottom: 1rem;
}

.muster-form {
    background: rgba(124, 58, 237, 0.05);
    border: 2px solid var(--accent-color);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 12px;
}

.muster-form h3 {
    color: var(--accent-color);
    margin-top: 0;
}

.form-content {
    background: var(--bg-dark);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 2;
    color: var(--text-muted);
}

.contact-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 0, 110, 0.05) 100%);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info p {
    color: var(--text-light);
    margin: 0;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    margin-top: 2rem;
}

.back-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 2rem 1rem 4rem 1rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .info-box,
    .highlight-box {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .form-content {
        font-size: 0.85rem;
        padding: 1rem;
    }
}
