/* Privacy Policy Styles */
.privacy-policy {
    min-height: 100vh;
    padding: 120px 20px 80px;
    background: #0a0a0a;
}

.privacy-policy-container {
    max-width: 1280px;
    margin: 0 auto;
}

.privacy-content {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 60px;
    color: #ddd;
}


.privacy-content h1 {
    font-size: 3rem;
    font-weight: 100;
    color: #ffffff;
    margin-bottom: 40px;
   
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.privacy-content h2 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-content h3 {
    font-size: 25px;
    font-weight: 600;
    color: #ffffff;
    margin: 40px 0 15px;
}

.privacy-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
    
}

.privacy-content ul,
.privacy-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-content li {
    font-size: 20px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 12px;
}

.privacy-content strong {
    color: #fff;
    font-weight: 600;
}

.privacy-content em {
    color: #00d4ff;
    font-style: italic;
}

.privacy-content a {
    color: #00d4ff;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.privacy-content a:hover {
    color: #00ffff;
    border-bottom-color: #00ffff;
}

.privacy-content hr {
    margin: 40px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Last updated notice */
.privacy-content > p:last-child {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #888;
    text-align: center;
    font-style: italic;
}

