/* Privacy Policy Specific Styles */

.privacy-policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: #333;
    background: #fff;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid #007ee5;
    padding-bottom: 20px;
}

.privacy-header h1 {
    font-size: 2.5em;
    color: #007ee5;
    margin-bottom: 10px;
    font-weight: 700;
}

.update-info {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #28a745;
}

.update-info p {
    margin: 5px 0;
    color: #495057;
}

/* Section Styling */
.policy-section {
    margin: 40px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 5px solid #007ee5;
}

.policy-section h1 {
    font-size: 2em;
    color: #007ee5;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dee2e6;
}

.policy-section h2 {
    font-size: 1.6em;
    color: #495057;
    margin: 25px 0 15px 0;
    padding-left: 10px;
    border-left: 4px solid #ff962a;
}

.policy-section h3 {
    font-size: 1.3em;
    color: #6c757d;
    margin: 20px 0 12px 0;
    padding-left: 8px;
    border-left: 3px solid #22c064;
}

/* Content Styling */
.policy-content {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 15px 0;
}

.policy-content p {
    margin-bottom: 15px;
    text-align: justify;
}

/* List Styling */
.info-list {
    background: #e9ecef;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.info-list p {
    margin: 8px 0;
    padding-left: 20px;
    position: relative;
}

.info-list p:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007ee5;
    font-weight: bold;
}

/* Directory Link Styling */
.info-list a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.info-list a:hover {
    color: #007ee5;
    text-decoration: underline;
}

.info-list a:visited {
    color: #6c757d;
}

/* Special Emphasis */
.emphasis-box {
    background: #fff3cd;
    border: 2px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.emphasis-box strong {
    color: #856404;
}

/* SDK Info Styling */
.sdk-info {
    background: #e8f5e8;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.sdk-info h4 {
    color: #155724;
    margin-bottom: 10px;
}

.sdk-info p {
    margin: 5px 0;
}

.sdk-info a {
    color: #007ee5;
    text-decoration: none;
}

.sdk-info a:hover {
    text-decoration: underline;
}

/* Highlight important text */
 .highlight {
            background-color: #f8f9fa;
            padding: 20px;
            border-left: 4px solid #ffc107;
            margin: 25px 0;
            border-radius: 6px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

/* Warning/Important text */
.warning-text {
    color: #dc3545;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 20px 15px;
    }
    
    .privacy-header h1 {
        font-size: 2em;
    }
    
    .policy-section {
        padding: 15px;
        margin: 25px 0;
    }
    
    .policy-content {
        padding: 15px;
    }
    
    .policy-section h1 {
        font-size: 1.6em;
    }
    
    .policy-section h2 {
        font-size: 1.3em;
    }
    
    .policy-section h3 {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 1.8em;
    }
    
    .update-info {
        padding: 10px 15px;
    }
    
    .policy-section {
        padding: 12px;
    }
    
    .policy-content {
        padding: 12px;
    }
}

/* Print Styles */
@media print {
    .privacy-policy-container {
        padding: 0;
        margin: 0;
    }
    
    .policy-section {
        background: none;
        border: none;
        margin: 20px 0;
    }
    
    .policy-content {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}