:root {
    /* Colors */
    --background-light: #ffffff;
    --nav-background: rgba(245, 245, 247, .8);
    --nav-color: rgba(0, 0, 0, .8);
    --nav-hover-color: #000000;
    --button-color: #0071e3;
    --button-hover-color: #0077ED;
    
    --linkt-color: #06c;
    --text-color: #06c;

    --feature-background-color: #0071e3;

    --text-secondary: #86868B;
    --border-color: rgba(0, 0, 0, 0.15);
    --shadow-color: rgba(0, 0, 0, 0.1);
    --button-shadow: rgba(0, 113, 227, 0.3);
    --card-background: #ffffff;
    --text-primary: #1d1d1f;
    --footer-background: #f5f5f7;
    --footer-textColor: #515154;
    --footer-textColor-hover: #1d1d1f;

    /* Font Sizes */
    --font-xs: 12px;
    --font-sm: 14px;
    --font-base: 16px;
    --font-lg: 20px;
    --font-xl: 22px;
    --font-2xl: 24px;

    /* Line Heights */
    --line-height-large: 170%;

    /* Andere */
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    /* Font-Family Variablen */
    --font-family-heading: "SF Pro Display", -apple-system, BlinkMacSystemFont, 
        "Helvetica Neue", Arial, sans-serif;
    --font-family-body: "SF Pro Text", -apple-system, BlinkMacSystemFont, 
        "Helvetica Neue", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #ffffff;
}

body {
    font-family: var(--font-family-body);
    color: var(--text-primary);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #ffffff;
}

/* Main Content Styles */
.main-content {
    margin-top: 120px;
    padding: 40px 20px 80px;
    min-height: calc(100vh - 120px);
}

.container {
    max-width: 980px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-family: var(--font-family-heading);
    font-size: 48px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.08;
}

.page-subtitle {
    font-size: 21px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.19;
}

/* Privacy Content */
.privacy-content {
    max-width: 692px;
    margin: 0 auto;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 48px;
}

.intro-text {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.47;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.privacy-icon {
    text-align: center;
    margin: 32px 0;
}

.privacy-icon-img {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto;
}

/* FAQ Section */
.privacy-faq {
    margin-top: 0;
}

.faq-title {
    display: none;
}

.faq-container {
    max-width: 980px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: transparent;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-family-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    line-height: 1.21;
}

.faq-question:hover {
    background-color: transparent;
}

.faq-question:focus {
    outline: none;
    background-color: transparent;
}

.faq-icon {
    font-size: 16px;
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: transparent;
}

.faq-answer.expanded {
    max-height: 1000px;
}

.faq-content {
    padding: 0 0 24px 0;
    font-size: 17px;
    line-height: 1.47;
    color: var(--text-primary);
}

.faq-content p {
    margin-bottom: 16px;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.faq-content li {
    margin-bottom: 8px;
    line-height: 1.47;
}

.faq-content li:last-child {
    margin-bottom: 0;
}

.faq-content a {
    color: var(--linkt-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-content a:hover {
    color: var(--button-hover-color);
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-content {
        margin-top: 160px;
        padding: 20px 16px 60px;
    }

    .page-title {
        font-size: 32px;
        line-height: 1.125;
        margin-bottom: 8px;
    }

    .page-subtitle {
        font-size: 19px;
    }

    .privacy-content {
        max-width: 100%;
    }

    .intro-text {
        font-size: 19px;
        line-height: 1.47;
    }

    .privacy-intro {
        margin-bottom: 32px;
    }

    .privacy-icon {
        margin: 24px 0;
    }

    .privacy-icon-img {
        width: 56px;
        height: 56px;
    }

    .faq-container {
        max-width: 100%;
    }

    .faq-question {
        padding: 20px 0;
        font-size: 28px;
    }

    .faq-content {
        padding: 0 0 20px 0;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 28px;
    }

    .intro-text {
        font-size: 17px;
    }

    .privacy-intro {
        margin-bottom: 24px;
    }

    .privacy-icon {
        margin: 20px 0;
    }

    .privacy-icon-img {
        width: 48px;
        height: 48px;
    }

    .faq-question {
        padding: 16px 0;
        font-size: 24px;
    }

    .faq-content {
        padding: 0 0 16px 0;
        font-size: 15px;
    }

    .faq-icon {
        margin-left: 12px;
    }
}


