/* ============================================
   AGB-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 h2:first-child {
    margin-top: 0;
}

.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,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.content-section strong {
    color: var(--primary-color);
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.warning-box {
    background: rgba(255, 0, 110, 0.1);
    border: 2px solid var(--secondary-color);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    color: var(--text-light);
    line-height: 1.8;
}

.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;
    color: var(--text-light);
    line-height: 1.8;
}

.info-box h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1rem;
}

.warning-box strong,
.info-box strong {
    color: var(--primary-color);
}

.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
   ============================================ */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .content-section {
        margin: 0 1rem 2rem 1rem;
        padding: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.3rem;
    }

    .content-section h3 {
        font-size: 1rem;
    }

    .content-section p {
        font-size: 0.95rem;
    }

    .content-section li {
        font-size: 0.95rem;
    }

    .warning-box,
    .info-box {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.5rem;
    }

    .content-section {
        margin: 0 0.5rem 2rem 0.5rem;
        padding: 1.2rem;
    }

    main h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    main h3 {
        font-size: 0.95rem;
    }

    main p {
        font-size: 0.9rem;
    }

    main li {
        font-size: 0.9rem;
    }

    .warning-box,
    .info-box {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
}
