body {
    font-family: 'Times New Roman', Times, serif; /* Classic Word font */
    background-color: #f0f0f0; /* Grey background like Word */
    margin: 0;
    padding: 20px;
    line-height: 1.5;
}

.word-container {
    display: flex;
    justify-content: center;
    max-width: 1100px; /* Limit width */
    margin: 0 auto;
}

.page {
    background-color: white;
    padding: 72pt 72pt; /* Standard Word margins (1 inch = 72 points) */
    width: 612pt; /* Standard US Letter width (8.5 inches) */
    min-height: 792pt; /* Standard US Letter height (11 inches) */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    position: relative; /* For positioning elements within the page */
    border: 1px solid #ccc;
}

.doc-title {
    text-align: center;
    font-size: 14pt;
    font-weight: bold;
    margin-bottom: 24pt;
    text-transform: uppercase;
}

h1, h2 {
    font-family: 'Calibri', 'Arial', sans-serif; /* Word often uses sans-serif for headings */
    font-weight: bold;
    margin-top: 18pt;
    margin-bottom: 12pt;
}

h2 {
    font-size: 12pt;
    text-transform: uppercase;
}

p, li {
    font-size: 12pt;
    text-align: justify;
    margin-bottom: 10pt;
}

ol {
    padding-left: 40pt;
}

li {
    margin-bottom: 6pt;
}

strong {
    font-weight: bold;
}

.signature-block {
    margin-top: 36pt;
    margin-bottom: 12pt;
    width: 45%;
    display: inline-block;
    vertical-align: top;
}

/* --- Comments --- */

.comments-sidebar {
    width: 250px;
    min-width: 200px;
    max-width: 300px;
    margin-left: 20px;
    padding: 15px;
    background-color: #f8f8f8;
    border-left: 1px solid #d0d0d0;
    font-family: 'Calibri', 'Arial', sans-serif; /* Comments often use sans-serif */
    font-size: 10pt;
}

.comments-sidebar h2 {
    font-size: 11pt;
    margin-top: 0;
    margin-bottom: 15px;
    color: #555;
    text-transform: none;
}

.comment {
    background-color: #fffbea; /* Light yellow comment background */
    border: 1px solid #e0e0e0;
    border-left: 3px solid #d1a100; /* Yellowish left border */
    padding: 8px 10px;
    margin-bottom: 15px;
    border-radius: 3px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.05);
}

.comment-author {
    font-weight: bold;
    color: #a16000; /* Darker yellow/brown for author */
    display: block;
    margin-bottom: 4px;
}

.comment p {
    font-size: 9.5pt;
    margin-bottom: 0;
    text-align: left;
    line-height: 1.4;
    color: #333;
}

.comment-ref {
    font-size: 8pt;
    vertical-align: super;
    color: #d1a100;
    cursor: default;
    /* Could add JS to highlight comment on click/hover */
}

/* --- Simulated Highlighting Styles --- */
.highlight-red {
    background-color: rgba(255, 0, 0, 0.3) !important;
}
.highlight-yellow {
    background-color: rgba(255, 255, 0, 0.4) !important;
}
.highlight-green {
    background-color: rgba(0, 255, 0, 0.3) !important;
}
.highlight-red, .highlight-yellow, .highlight-green {
    transition: background-color 0.2s ease-in-out;
}

#ezPrivacyCenter {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    top: auto !important;
    left: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    writing-mode: horizontal-tb !important;
    transform: none !important;
    background-color: #5fa624 !important;
    color: white !important;
    border-radius: 5px !important;
    z-index: 2147483647 !important;
    box-shadow: 0 0 10px rgba(0,0,0,0.3) !important;
    cursor: pointer !important;
} 