.policy-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
    position: relative;

    h1 {
        color: var(--primary-orange);
        margin-bottom: 0.5rem;
    }

    h2 {
        color: var(--dark-orange);
        margin-top: 2rem;
        margin-bottom: 1rem;
        border-bottom: 2px solid var(--primary-orange);
        padding-bottom: 0.5rem;
    }

    h3 {
        color: var(--dark-orange);
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-weight: 600;
    }

    p {
        color: var(--light-text);
        margin-bottom: 0.75rem;
    }
}

.last-updated {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.plugins-button {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 158, 0, 0.3);
    display: inline-block;
}

.plugins-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 158, 0, 0.4);
}

.license-section {
    margin-bottom: 2.5rem;
}

#de:not(.active),
#en:not(.active) {
    display: none;
}

#de.active,
#en.active {
    display: block;
}

.language-toggle {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;

    button {
        background: var(--light-bg);
        border: 2px solid var(--primary-orange);
        color: var(--dark-text);
        padding: 0.5rem 1.5rem;
        border-radius: 4px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;

        &.active {
            background: var(--primary-orange);
            color: white;
        }
    }
}
