* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    font-size: 14px;
}

.document-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 60px;
    background-color: white;
    min-height: 100vh;
}

.document-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
}

.document-title {
    font-size: 28px;
    color: #1e6b7a;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.document-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.header-line {
    width: 100%;
    height: 2px;
    background-color: #1e6b7a;
    margin: 0 auto;
}

.document-content {
    text-align: justify;
}

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 22px;
    color: #1e6b7a;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.effective-date {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    text-align: right;
    font-size: 13px;
}

.intro-text {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.7;
}

.content-block {
    margin-bottom: 20px;
}

.subsection-title {
    font-size: 16px;
    color: #2c5f6a;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 15px;
}

.content-block p {
    margin-bottom: 10px;
    line-height: 1.7;
    text-indent: 0;
}

.policy-list {
    margin: 10px 0 15px 25px;
    line-height: 1.6;
}

.policy-list li {
    margin-bottom: 8px;
    color: #444;
}

.policy-note {
    font-style: italic;
    color: #666;
    margin-top: 30px;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 3px solid #1e6b7a;
    text-align: center;
    font-size: 13px;
}

.document-footer {
    margin-top: 50px;
    padding-top: 20px;
}

.footer-line {
    width: 100%;
    height: 1px;
    background-color: #ccc;
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    color: #666;
    font-size: 12px;
    font-style: italic;
}

/* Print Styles */
@media print {
    body {
        font-size: 12px;
    }
    
    .document-container {
        padding: 20px;
        box-shadow: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    .section-title {
        page-break-after: avoid;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .document-container {
        padding: 20px 30px;
    }
    
    .document-title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    body {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .document-container {
        padding: 15px 20px;
    }
    
    .document-title {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .policy-list {
        margin-left: 20px;
    }
}
