/* Privacy Policy Page Styles - Unified Modern Design */

.privacy-policy-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 30px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

.privacy-content {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
    color: #333;
    position: relative;
}

.privacy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe, #fd79a8);
    border-radius: 16px 16px 0 0;
}

/* Typography */
.privacy-title {
    color: #2d3436;
    text-align: center;
    border-bottom: 4px solid #6c5ce7;
    padding-bottom: 20px;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-title {
    color: #6c5ce7;
    margin-top: 40px;
    margin-bottom: 25px;
    border-left: 6px solid #a29bfe;
    padding-left: 20px;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

h3 {
    color: #5f3dc4;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 8px;
}

/* Company Information */
.company-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border: 1px solid #dee2e6;
}

.company-info p {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.5;
}

.company-info strong {
    color: #f8f9fa;
    font-weight: 600;
}

.company-info a {
    color: white !important;
    text-decoration: none;
}

.company-info a:hover {
    color: #f8f9fa !important;
    text-decoration: underline;
}

/* Sections */
.privacy-section {
    margin-bottom: 30px;
}

.privacy-section p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.7;
}

/* Definitions */
.definition-item {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.definition-item:last-child {
    border-bottom: none;
}

.definition {
    font-style: italic;
    color: #495057;
    font-size: 14px;
}

/* Enhanced Lists */
.privacy-content ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.privacy-content li {
    list-style: none !important;
}

ul.personal-data-list,
ul.purposes-list,
ul.rights-list {
    margin: 20px 0;
    padding-left: 25px;
    list-style: none !important;
}

ul.personal-data-list li,
ul.purposes-list li,
ul.rights-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
    list-style: none !important;
}

ul.personal-data-list li::before {
    content: "•";
    color: #6c5ce7;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
    width: 15px;
}

ul.purposes-list li::before {
    content: "→";
    color: #a29bfe;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 16px;
    width: 15px;
}

ul.rights-list li::before {
    content: "★";
    color: #fd79a8;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 14px;
    width: 15px;
}

/* Important Information */
.important-info {
    margin: 30px 0;
}

.info-block {
    margin: 25px 0;
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid;
}

.info-block.warning {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    border-left-color: #e17055;
    color: #2d3436;
}

.info-block h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.info-block p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

/* Privacy Sections */
.privacy-section {
    margin: 40px 0;
    padding: 25px 0;
}

.privacy-section p {
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.8;
}

/* Date Updated */
.date-updated {
    text-align: right;
    margin-top: 50px;
    padding-top: 25px;
    border-top: 3px solid #e9ecef;
}

.date-updated p {
    color: #6c757d;
    font-style: italic;
    font-size: 14px;
    margin-bottom: 5px;
}

/* Text Formatting */
strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Contact Information */
.contact-info {
    background: linear-gradient(135deg, #e17055 0%, #f39c12 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
}

.contact-details {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-details strong {
    color: #fff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .privacy-container {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .privacy-content {
        padding: 40px 30px;
    }
}

@media (max-width: 1024px) {
    .privacy-content {
        padding: 30px 25px;
    }
    
    .privacy-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 20px;
        margin-top: 30px;
        padding-left: 15px;
        border-left: 4px solid #a29bfe;
    }
}

@media (max-width: 768px) {
    .privacy-policy-wrapper {
        padding: 20px 0;
    }
    
    .privacy-container {
        padding: 0 10px;
    }
    
    .privacy-content {
        padding: 25px 15px;
        border-radius: 10px;
    }
    
    .privacy-title {
        font-size: 24px;
        line-height: 1.3;
        padding-bottom: 15px;
    }
    
    .section-title {
        font-size: 20px;
        margin-top: 30px;
        padding-left: 15px;
        border-left: 4px solid #a29bfe;
    }
    
    h3 {
        font-size: 16px;
    }
    
    .company-info,
    .info-block,
    .contact-info {
        padding: 20px;
        margin: 20px 0;
    }
    
    .personal-data-list,
    .purposes-list,
    .rights-list {
        padding-left: 15px;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 0 5px;
    }
    
    .privacy-content {
        padding: 20px 10px;
    }
    
    .privacy-title {
        font-size: 20px;
        text-align: left;
    }
    
    .section-title {
        font-size: 18px;
        line-height: 1.4;
        padding-left: 10px;
        border-left: 3px solid #a29bfe;
    }
    
    .company-info,
    .info-block,
    .contact-info {
        padding: 15px;
    }
    
    .date-updated {
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .privacy-policy-wrapper {
        background: white;
        padding: 0;
    }
    
    .privacy-content {
        box-shadow: none;
        padding: 20px 0;
    }
    
    .privacy-title,
    .section-title {
        color: black !important;
    }
    
    .contact-info,
    .important-notice,
    .consent-section {
        border: 1px solid #ccc;
        background: white !important;
    }
    
    .section-title {
        border-left: 3px solid #000;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.privacy-content:focus,
.section-title:focus {
    outline: 2px solid #6c5ce7;
    outline-offset: 2px;
}

.privacy-content a:focus {
    outline: 2px solid #6c5ce7;
    outline-offset: 2px;
    border-radius: 3px;
}

/* Modern link styles */
.privacy-content a {
    color: #6c5ce7;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    border-bottom: 2px solid transparent;
}

.privacy-content a:hover {
    color: #5f3dc4;
    border-bottom-color: #5f3dc4;
}

/* Legal pages links styling */
.legal-pages-links {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid #e9ecef;
}

.legal-pages-links h3 {
    color: #6c5ce7;
    margin-bottom: 20px;
    border-left: 4px solid #a29bfe;
    padding-left: 15px;
    font-size: 20px;
    font-weight: 600;
}

.legal-pages-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.legal-pages-links li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.legal-pages-links li::before {
    content: "📄";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 16px;
}

.legal-pages-links a {
    color: #6c5ce7 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    border-bottom: 2px solid transparent;
}

.legal-pages-links a:hover {
    color: #5f3dc4 !important;
    border-bottom-color: #5f3dc4;
}

/* Light theme always - forced light theme for all devices */
@media (prefers-color-scheme: dark) {
    .privacy-policy-wrapper {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    }
    
    .privacy-content {
        background: white !important;
        color: #333 !important;
    }
    
    .privacy-title {
        color: #2d3436 !important;
        border-bottom-color: #6c5ce7 !important;
    }
    
    .section-title {
        color: #6c5ce7 !important;
        border-left-color: #a29bfe !important;
    }
    
    h3 {
        color: #5f3dc4 !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .privacy-content {
        border: 2px solid #000;
    }
    
    .section-title {
        border-left-color: #000;
    }
    
    .company-info,
    .info-block,
    .contact-info {
        border: 2px solid #000;
    }
}