/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.5;
    color: #000000;
    background-color: #ffffff;
    padding: 20px;
    font-size: 12px;
}

.document-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #cccccc;
}

/* Document Header */
.document-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #000000;
}

.document-header h1 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #000000;
}

.last-updated {
    font-size: 11px;
    font-style: italic;
    color: #333333;
}

/* Sections */
.section {
    margin-bottom: 25px;
    text-align: justify;
}

.section p {
    margin-bottom: 10px;
    font-size: 12px;
}

/* Terms List */
.terms-list {
    margin-bottom: 30px;
}

.term-item {
    margin-bottom: 25px;
    page-break-inside: avoid;
}

.term-item h2 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000000;
    text-transform: uppercase;
}

.term-item p {
    margin-bottom: 8px;
    text-align: justify;
    font-size: 14px;
}

.term-item ul {
    margin-left: 25px;
    margin-bottom: 12px;
}

.term-item li {
    margin-bottom: 5px;
    font-size: 14px;
}

/* Links */
a {
    color: #000000;
    text-decoration: underline;
}

a:hover {
    color: #333333;
}

/* Acceptance Section */
.acceptance-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #cccccc;
    text-align: center;
}

.acceptance-section h2 {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000000;
    text-transform: uppercase;
}

.acceptance-section p {
    font-size: 12px;
    font-style: italic;
}

/* Document Footer */
.document-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #cccccc;
    text-align: center;
    font-size: 11px;
    color: #666666;
}

.document-footer p {
    margin-bottom: 5px;
}

/* Print Styles */
@media print {
    body {
        padding: 0;
        background: none;
    }
    
    .document-container {
        box-shadow: none;
        border: none;
        padding: 20px;
        max-width: 100%;
    }
    
    a {
        color: #000000;
        text-decoration: none;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .document-container {
        padding: 20px;
    }
}