/* ============================================
   Privacy Policy Page Styles
   ============================================ */

.privacy-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    min-height: 100vh;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(101, 100, 219, 0.1);
}

/* Header */
.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-header h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #8474FB 0%, #556BEF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.effective-date {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Introduction */
.privacy-intro {
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(132, 116, 251, 0.05) 0%, rgba(85, 107, 239, 0.05) 100%);
    border-left: 4px solid #8474FB;
    border-radius: 10px;
}

.privacy-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

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

.privacy-intro strong {
    color: #8474FB;
    font-weight: 600;
}

.privacy-intro ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-intro ul li {
    margin-bottom: 8px;
    color: #333;
}

/* Section Content */
.privacy-section-content {
    margin-bottom: 40px;
}

.privacy-section-content h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #8474FB;
}

.privacy-section-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin: 25px 0 15px;
}

.privacy-section-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

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

.privacy-section-content ol>li {
    counter-increment: item;
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    line-height: 1.8;
    color: #444;
}

.privacy-section-content ol>li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #8474FB;
    font-size: 16px;
}

.privacy-section-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-section-content ul li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #444;
    position: relative;
    padding-left: 10px;
}

.privacy-section-content ul li::marker {
    color: #8474FB;
}

.privacy-section-content a {
    color: #8474FB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-section-content a:hover {
    color: #556BEF;
    text-decoration: underline;
}

/* Footer Note */
.privacy-footer-note {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #8474FB 0%, #556BEF 100%);
    border-radius: 15px;
    text-align: center;
}

.privacy-footer-note p {
    color: white;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.privacy-footer-note strong {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-section {
        padding: 100px 0 60px;
    }

    .privacy-content {
        padding: 40px 30px;
        border-radius: 15px;
    }

    .privacy-header h1 {
        font-size: 32px;
    }

    .effective-date {
        font-size: 13px;
    }

    .privacy-intro {
        padding: 20px;
    }

    .privacy-intro p {
        font-size: 15px;
    }

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

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

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

    .privacy-section-content ol>li {
        padding-left: 30px;
    }

    .privacy-footer-note {
        padding: 25px 20px;
    }

    .privacy-footer-note p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-header h1 {
        font-size: 28px;
    }

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

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

/* Print Styles */
@media print {

    .navbar,
    .footer {
        display: none;
    }

    .privacy-section {
        padding: 20px 0;
        background: white;
    }

    .privacy-content {
        box-shadow: none;
        padding: 0;
    }

    .privacy-header h1 {
        -webkit-text-fill-color: #1a1a2e;
        color: #1a1a2e;
    }

    .privacy-intro {
        background: white;
        border: 1px solid #ddd;
    }

    .privacy-footer-note {
        background: #f5f5f5;
        color: #333;
    }

    .privacy-footer-note p {
        color: #333;
    }

    a {
        color: #333;
        text-decoration: underline;
    }
}