:root {
    --primary-color: #1a5276;
    --secondary-color: #2e86c1;
    --accent-color: #e74c3c;
    --light-color: #f8f9fa;
    --dark-color: #2c3e50;
    --text-color: #333;
    --border-color: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f7fa;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.policy-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.policy-header h1 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.policy-header p {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.policy-content {
    counter-reset: section;
}

.policy-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.6rem;
    counter-increment: section;
    counter-reset: subsection;
}

.policy-section h2::before {
    content: counter(section) ". ";
}

.policy-section h3 {
    color: var(--secondary-color);
    margin: 1.2rem 0 0.8rem;
    font-size: 1.2rem;
    counter-increment: subsection;
    counter-reset: subsubsection;
}

.policy-section h3::before {
    content: counter(section) "." counter(subsection) ". ";
}

.policy-section p, .policy-section ul, .policy-section ol {
    margin-bottom: 1rem;
}

.policy-section ul, .policy-section ol {
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

/* Fix for ordered list numbering */
.policy-section ol {
    list-style-type: none;
    counter-reset: list-item;
}

.policy-section ol > li {
    counter-increment: list-item;
    position: relative;
    margin-bottom: 1rem;
}

/* Main sections (1., 2., 3., etc.) */
.policy-section > ol > li::before {
    content: counter(list-item) ". ";
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

/* Subsections (1.1, 1.2, 1.3, etc.) */
.policy-section > ol > li > ol > li::before {
    content: counter(section) "." counter(list-item) " ";
    font-weight: bold;
    position: absolute;
    left: -2.5rem;
}

/* Sub-subsections (1.1.1, 1.1.2, 1.1.3, etc.) */
.policy-section > ol > li > ol > li > ol > li::before {
    content: counter(section) "." counter(subsection) "." counter(list-item) " ";
    font-weight: bold;
    position: absolute;
    left: -3.5rem;
}

.highlight {
    background-color: #f8f9fa;
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.contact-info {
    background-color: #e8f4fc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-top: 0;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

strong {
    color: var(--dark-color);
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
    }
    
    .policy-header h1 {
        font-size: 1.8rem;
    }
}