/* privacy.css - Styling for Privacy Policy Page */

/* Main page styling */
.privacy-policy {
    color: var(--dark-gray);
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    padding: 0;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Desktop: Centered container with left-aligned content */
.privacy-container {
    max-width: 1000px; /* Slightly narrower for better readability */
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Title styling - Center only titles */
.privacy-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.policy-version {
    font-size: 1.125rem;
    margin-bottom: 50px;
    border-bottom: 1px solid #42454a;
    padding-bottom: 20px;
    text-align: center;
}

/* Section styling */
.policy-section {
    margin-bottom: 60px;
    scroll-margin-top: 20px;
    width: 100%;
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #42454a;

}

.policy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px 0;

}

/* Desktop: Left-aligned paragraphs */
.policy-section p {
    margin-bottom: 20px;
    font-size: 1.125rem;
    text-align: left;
    max-width: none; /* Remove max-width constraint */
    margin-left: 0; /* Remove auto margins */
    margin-right: 0;
}

/* Desktop: Left-aligned lists */
.policy-section ul {
    margin: 15px 0 25px 0;
    padding-left: 20px;
    max-width: none;
}

.policy-section li {
    margin-bottom: 12px;
    font-size: 1.125rem;
    position: relative;
    padding-left: 10px;
    text-align: left;
}

.policy-section li:before {
    content: "•";
    color: var(--light-gray);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Contact information box */
.contact-info {
    margin: 25px 0;
    border-radius: 4px;
    max-width: none;
    text-align: left;
}

.contact-info p {
    margin-bottom: 10px;
}

/* Link styling */
.contact-info a {
    color: var(--dark-gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info a:hover {
    color: var(--light-gray);
    text-decoration: underline;
}

/* Mobile responsiveness - Center content */
@media (max-width: 1024px) {
    .privacy-container {
        padding: 30px 15px;
        max-width: 95%;
    }
    
    .policy-section p,
    .policy-section ul,
    .contact-info {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        text-align: justify;
    }
    h1, h2, h3 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .privacy-container {
        padding: 20px 15px;
        max-width: 100%;
    }
    
    .privacy-title {
        font-size: 2.5rem;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .policy-section h2 {
        font-size: 1.75rem;
        padding: 0 10px 10px 10px;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
        padding: 0 10px;
    }
    
    .policy-section p,
    .policy-section li {
        font-size: 1rem;
        text-align: left;
        padding: 0 10px;
    }
    
    .policy-section p {
        text-align: justify;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .policy-section ul {
        padding-left: 20px;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-info {
        padding: 15px;
        margin: 20px auto;
        max-width: 95%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-section p {
        text-align: left;
        line-height: 1.5;
    }
    
    .policy-section {
        margin-bottom: 40px;
    }
}

/* Optional scrollbar styling */
.privacy-policy::-webkit-scrollbar {
    width: 10px;
}

.privacy-policy::-webkit-scrollbar-track {
    background: #2f3136;
}

.privacy-policy::-webkit-scrollbar-thumb {
    background: #202225;
    border-radius: 5px;
}

.privacy-policy::-webkit-scrollbar-thumb:hover {
    background: #42454a;
}

/* Additional responsive improvements */
@media (max-width: 1200px) {
    .privacy-container {
        max-width: 95%;
    }
}

/* Print styles for better printing experience */
@media print {
    .privacy-container {
        max-width: 100%;
        padding: 20px;
    }
    
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .policy-section {
        margin-bottom: 40px;
        page-break-inside: avoid;
    }
}