.language-switcher {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 8px 16px;
    background: white;
    color: #d32f2f;
    text-decoration: none;
    border-radius: 20px;
    border: 2px solid #d32f2f;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.lang-btn:hover {
    background: #d32f2f;
    color: white;
    text-decoration: none;
}

.lang-btn.active {
    background: #d32f2f;
    color: white;
}

.privacy-policy-page {
    padding: 2rem 0;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    min-height: 100vh;
    margin-top: 0;
}

.privacy-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h1 {
    color: #d32f2f;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.privacy-content h2 {
    color: #d32f2f;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ffd93d;
    padding-bottom: 0.5rem;
}

.privacy-content h3 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
}

.privacy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-content a {
    color: #d32f2f;
    text-decoration: none;
}

.privacy-content a:hover {
    text-decoration: underline;
}

.privacy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.privacy-content th,
.privacy-content td {
    border: 1px solid #e0e0e0;
    padding: 0.55rem 0.75rem;
    text-align: left;
    vertical-align: top;
}

.privacy-content th {
    background: #fff8e1;
    color: #333;
}

.privacy-scope-note {
    background: #f9f9f9;
    border-left: 4px solid #ffd93d;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.social-sharing {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    text-align: center;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s;
}

.social-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.social-btn.facebook {
    background: #3b5998;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.linkedin {
    background: #0077b5;
}

@media (max-width: 768px) {
    .language-switcher {
        top: 80px;
        right: 10px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .privacy-policy-page {
        margin-top: 60px;
    }

    .privacy-content {
        margin: 1rem;
        padding: 1.5rem;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
}
