/* ============================================
   DATENSCHUTZ PAGE STYLES
   ============================================ */

.tr-datenschutz-page {
    padding: 140px 0 60px;
    background: var(--white);
    min-height: 100vh;
}

.tr-datenschutz-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
}

/* ============================================
   BACK LINK
   ============================================ */

.tr-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.tr-back-link:hover {
    gap: 12px;
    color: #00CDB8;
}

.tr-back-link svg {
    flex-shrink: 0;
}

/* ============================================
   HEADER SECTION
   ============================================ */

.tr-datenschutz-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 2px solid rgba(14, 165, 166, 0.2);
}

.tr-datenschutz-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.tr-datenschutz-header p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.tr-last-updated {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(14, 165, 166, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   TABLE OF CONTENTS
   ============================================ */

.tr-toc {
    background: linear-gradient(135deg, rgba(14, 165, 166, 0.05) 0%, rgba(14, 165, 166, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 40px;
}

.tr-toc h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.tr-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tr-toc ul li {
    margin-bottom: 12px;
}

.tr-toc ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.tr-toc ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ============================================
   SECTIONS
   ============================================ */

.tr-section {
    scroll-margin-top: 140px;
    padding: 10px 0;
}

.tr-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.3;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(14, 165, 166, 0.2);
}

.tr-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 14px;
    line-height: 1.4;
}

.tr-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.tr-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.tr-section strong {
    color: var(--dark);
    font-weight: 600;
}

.tr-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tr-section a:hover {
    color: #00CDB8;
    text-decoration: underline;
}

/* ============================================
   LISTS
   ============================================ */

.tr-section ul,
.tr-section ol {
    margin: 16px 0 24px 0;
    padding-left: 0;
}

.tr-section ul {
    list-style: none;
}

.tr-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.tr-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 18px;
}

.tr-section ol {
    counter-reset: item;
    list-style-type: none;
    padding-left: 0;
}

.tr-section ol li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.tr-section ol li::before {
    content: counter(item);
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

/* ============================================
   CONTACT INFO
   ============================================ */

.tr-contact-info {
    background: rgba(14, 165, 166, 0.05);
    border-radius: 12px;
    padding: 24px 28px;
    margin: 24px 0;
}

.tr-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.tr-info-row:last-child {
    margin-bottom: 0;
}

.tr-label {
    font-weight: 600;
    color: var(--dark);
    min-width: 180px;
    flex-shrink: 0;
    font-size: 15px;
}

.tr-value {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.tr-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.tr-value a:hover {
    color: #00CDB8;
    text-decoration: underline;
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */

.highlight-box,
.tr-highlight-box {
    background: linear-gradient(135deg, rgba(14, 165, 166, 0.05) 0%, rgba(14, 165, 166, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 24px 28px;
    margin: 24px 0;
}

.highlight-box h4,
.tr-highlight-box h4 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.highlight-box p,
.tr-highlight-box p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.8;
}

.highlight-box p:last-child,
.tr-highlight-box p:last-child {
    margin-bottom: 0;
}

.highlight-box strong,
.tr-highlight-box strong {
    color: var(--primary-color);
    font-size: 17px;
}

.highlight-box ul,
.tr-highlight-box ul {
    margin: 16px 0 0 0;
}

.highlight-box ul li,
.tr-highlight-box ul li {
    margin-bottom: 10px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .tr-datenschutz-page {
        padding: 100px 0 50px;
    }

    .tr-datenschutz-header h1 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .tr-datenschutz-header p {
        font-size: 16px;
    }

    .tr-datenschutz-header {
        margin-bottom: 40px;
        padding-bottom: 28px;
    }

    .tr-toc {
        padding: 24px 28px;
        margin-bottom: 40px;
    }

    .tr-toc h2 {
        font-size: 20px;
    }

    .tr-toc ul li a {
        font-size: 14px;
    }

    .tr-section {
        margin-bottom: 36px;
    }

    .tr-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .tr-section h3 {
        font-size: 18px;
        margin-top: 28px;
        margin-bottom: 14px;
    }

    .tr-section p,
    .tr-section ul li,
    .tr-section ol li {
        font-size: 15px;
    }

    .tr-contact-info {
        padding: 20px 24px;
    }

    .tr-label {
        min-width: 150px;
        font-size: 14px;
    }

    .tr-value {
        font-size: 14px;
    }

    .highlight-box,
    .tr-highlight-box {
        padding: 20px 24px;
        margin: 28px 0;
    }

    .tr-back-link {
        font-size: 14px;
        margin-bottom: 28px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .tr-datenschutz-page {
        padding: 80px 0 40px;
    }

    .tr-datenschutz-header h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .tr-datenschutz-header p {
        font-size: 15px;
    }

    .tr-datenschutz-header {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .tr-last-updated {
        padding: 6px 16px;
        font-size: 13px;
    }

    .tr-toc {
        padding: 20px 24px;
        margin-bottom: 32px;
    }

    .tr-toc h2 {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .tr-toc ul li {
        margin-bottom: 10px;
    }

    .tr-toc ul li a {
        font-size: 13px;
    }

    .tr-section {
        margin-bottom: 32px;
    }

    .tr-section h2 {
        font-size: 20px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }

    .tr-section h3 {
        font-size: 17px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .tr-section h4 {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .tr-section p,
    .tr-section ul li,
    .tr-section ol li {
        font-size: 14px;
        line-height: 1.7;
    }

    .tr-section ul li {
        padding-left: 24px;
        margin-bottom: 10px;
    }

    .tr-section ul li::before {
        font-size: 16px;
    }

    .tr-section ol li {
        padding-left: 36px;
        margin-bottom: 14px;
    }

    .tr-section ol li::before {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .tr-contact-info {
        padding: 18px 20px;
    }

    .tr-info-row {
        flex-direction: column;
        gap: 4px;
        margin-bottom: 16px;
    }

    .tr-label {
        min-width: auto;
        font-size: 14px;
        margin-bottom: 2px;
    }

    .tr-value {
        font-size: 14px;
    }

    .highlight-box,
    .tr-highlight-box {
        padding: 18px 20px;
        margin: 24px 0;
        border-left-width: 3px;
    }

    .highlight-box h4,
    .tr-highlight-box h4 {
        font-size: 16px;
    }

    .highlight-box strong,
    .tr-highlight-box strong {
        font-size: 15px;
    }

    .tr-back-link {
        font-size: 13px;
        margin-bottom: 24px;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .tr-datenschutz-page {
        padding: 70px 0 35px;
    }

    .tr-datenschutz-header h1 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .tr-datenschutz-header p {
        font-size: 14px;
    }

    .tr-datenschutz-header {
        margin-bottom: 28px;
        padding-bottom: 20px;
    }

    .tr-toc {
        padding: 18px 20px;
        margin-bottom: 28px;
    }

    .tr-toc h2 {
        font-size: 17px;
    }

    .tr-section h2 {
        font-size: 19px;
        margin-bottom: 16px;
    }

    .tr-section h3 {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .tr-section p,
    .tr-section ul li,
    .tr-section ol li {
        font-size: 14px;
    }

    .highlight-box,
    .tr-highlight-box {
        padding: 16px 18px;
        margin: 20px 0;
    }
}
