/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: #2c2c2c;
    background-color: #ffffff;
    font-size: 16px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    padding: 60px 0 40px;
    background: #ffffff;
    text-align: center;
    border-bottom: 3px solid #2c2c2c;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.company-name {
    font-size: 1.5rem;
    color: #2c2c2c;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.effective-date {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background: #ffffff;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
    text-align: justify;
}

.content-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #2c2c2c;
    padding-bottom: 0.5rem;
}

.content-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin: 2rem 0 1rem;
    text-decoration: underline;
}

.content-section p {
    margin-bottom: 1.2rem;
    color: #2c2c2c;
    line-height: 1.8;
    text-indent: 0;
}

.content-section a {
    color: #2c2c2c;
    text-decoration: underline;
    font-weight: 600;
}

.content-section a:hover {
    color: #000;
}

/* Footer */
.footer {
    background: #f8f8f8;
    padding: 30px 0;
    margin-top: 60px;
    border-top: 2px solid #2c2c2c;
    text-align: center;
}

.footer p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    margin: 0 10px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .company-name {
        font-size: 1.2rem;
    }
    
    .content-section {
        text-align: left;
    }
}

/* Print Styles */
@media print {
    body {
        font-size: 12pt;
        line-height: 1.6;
    }
    
    .header {
        border-bottom: 2pt solid #000;
    }
    
    .content-section h2 {
        border-bottom: 1pt solid #000;
        page-break-after: avoid;
    }
    
    .content-section h3 {
        page-break-after: avoid;
    }
    
    .footer {
        border-top: 1pt solid #000;
    }
}