/* Privacy Policy Styles */
.privacy-policy {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    line-height: 1.6;
    color: #333;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #4361ee;
}

.policy-header h1 {
    color: #4361ee;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.policy-header h1 i {
    margin-right: 15px;
}

.last-updated {
    color: #666;
    font-style: italic;
}

.policy-intro {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-prompt {
    background: #e9f7fe;
    padding: 15px;
    border-left: 4px solid #4cc9f0;
    margin-top: 20px;
}

.toc {
    background: #f5f7ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.toc h2 {
    color: #3f37c9;
    margin-bottom: 15px;
}

.toc ol {
    columns: 2;
    padding-left: 20px;
}

.toc li {
    margin-bottom: 8px;
}

.toc a {
    color: #4361ee;
    text-decoration: none;
}

.toc a:hover {
    text-decoration: underline;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: #3f37c9;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.section-number {
    color: #4cc9f0;
    margin-right: 10px;
}

.policy-section h3 {
    color: #555;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.policy-section h4 {
    color: #666;
    font-size: 1.1rem;
    margin: 20px 0 10px;
}

.policy-section p, 
.policy-section li {
    margin-bottom: 10px;
}

.two-column-list {
    columns: 2;
    list-style-position: inside;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info i {
    color: #4cc9f0;
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 20px;
        margin: 20px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .toc ol {
        columns: 1;
    }
    
    .two-column-list {
        columns: 1;
    }
}




/* Policy Section Styles */



.summary-box {
    background: #f0f7ff;
    padding: 15px;
    border-left: 4px solid #4361ee;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.notice-box {
    background: #fff8e6;
    padding: 15px;
    border-left: 4px solid #ffc107;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box {
    background: #f5f7ff;
    padding: 15px;
    border: 1px solid #d1d9ff;
    margin: 20px 0;
    border-radius: 8px;
}

.contact-box {
    background: #e8f5e9;
    padding: 15px;
    border-left: 4px solid #4caf50;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.policy-section h3 {
    color: #555;
    margin: 25px 0 15px;
    font-size: 1.3rem;
}

.policy-section ul, 
.policy-section ol {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 8px;
}

.policy-section a {
    color: #4361ee;
    text-decoration: none;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* Data Deletion Section Styles */
#data-deletion {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
}

.process-box, .auto-deletion, .support-contact {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #ddd;
}

#data-deletion h3 {
    color: #3f37c9;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

#data-deletion h3 i {
    margin-right: 10px;
    color: #4cc9f0;
}

.steps-list {
    counter-reset: step-counter;
    padding-left: 0;
}

.steps-list li {
    position: relative;
    list-style-type: none;
    padding-left: 40px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.steps-list li:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: #4361ee;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.auto-deletion ul {
    padding-left: 25px;
}

.auto-deletion li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding: 12px 15px;
    background: #eef7ff;
    border-radius: 8px;
    width: fit-content;
}

.contact-method i {
    color: #4361ee;
    margin-right: 10px;
    font-size: 1.2rem;
}

.contact-method a {
    color: #4361ee;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    #data-deletion {
        padding: 20px;
    }
    
    .contact-method {
        width: 100%;
    }
}