/* Privacy Policy Page Specific Styles */

.privacy-policy {
    padding: 5rem 0;
    background: #F8FBFF;
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.policy-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.policy-subtitle {
    font-size: 1.125rem;
    color: #6B7280;
    font-weight: 500;
}

.policy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* New privacy policy structure styles */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
    padding: 0 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.paper {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.m-auto {
    margin: auto;
}

/* Header styles */
.paper header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 1rem;
}

.paper header h4 {
    font-size: 1.25rem;
    color: #0a7ea4;
    font-weight: 600;
    margin-bottom: 2rem;
}

.blanc-space {
    color: #0a7ea4;
    font-weight: 600;
}

/* Content styles */
.paper h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2C3E50;
    margin: 2.5rem 0 1.5rem 0;
    padding-top: 1rem;
    border-top: 2px solid #E5E7EB;
}

.paper h3:first-of-type {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.paper h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2C3E50;
    margin: 2rem 0 1rem 0;
}

.paper p {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.paper ul {
    margin: 1rem 0 1.5rem 2rem;
}

.paper li {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.paper li i {
    font-style: italic;
    color: #0a7ea4;
    font-weight: 500;
}

/* Pre and special text styles */
.paper pre {
    background: #F8FBFF;
    border: 1px solid #E5E7EB;
    border-radius: 0.5rem;
    padding: 1rem;
    margin: 1rem 0;
    overflow-x: auto;
}

.paper pre p {
    margin: 0;
    font-family: 'Space Mono', monospace;
    font-size: 0.875rem;
    color: #6B7280;
}

.text-wrap {
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Link styles */
.paper a {
    color: #0a7ea4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.paper a:hover {
    color: #174872;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 1200px) {
    .col-xl-10 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .policy-content {
        padding: 0 1rem;
    }
    
    .paper {
        padding: 2rem 1.5rem;
    }
    
    .paper header h2 {
        font-size: 2rem;
    }
    
    .paper h3 {
        font-size: 1.5rem;
    }
    
    .paper h4 {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .paper {
        padding: 1.5rem 1rem;
    }
    
    .paper header h2 {
        font-size: 1.75rem;
    }
    
    .paper h3 {
        font-size: 1.375rem;
    }
}
