.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 40px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #ffffff;
}

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.privacy-header .emoji {
    font-size: 64px;
    margin-bottom: 20px;
}

.last-updated {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.content-section h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 30px 0 15px 0;
    color: #ffffff;
}

.content-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 16px;
}

.content-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.content-section li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.content-section li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.content-section ul ul {
    margin-top: 12px;
    margin-left: 20px;
}

.warning-box {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.warning-box h3 {
    color: #ffc107;
    margin-top: 0;
    margin-bottom: 15px;
}

.success-box {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 30px 0;
}

.success-box h3 {
    color: #4caf50;
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    margin: 60px 0;
}

.contact-box h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.contact-box p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-box a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: border-color 0.3s ease;
}

.contact-box a:hover {
    border-color: #ffffff;
}

.content-section a {
    color: #8b9aff;
    text-decoration: none;
    border-bottom: 1px solid rgba(139, 154, 255, 0.3);
    transition: border-color 0.3s ease;
}

.content-section a:hover {
    border-color: #8b9aff;
}

@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 36px;
    }

    .privacy-header .emoji {
        font-size: 48px;
    }

    .content-section h2 {
        font-size: 26px;
    }

    .content-section h3 {
        font-size: 20px;
    }

    .warning-box, .success-box {
        padding: 20px;
    }

    .contact-box {
        padding: 30px 20px;
    }
}
