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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    padding: 80px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 60px;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.company-name {
    font-size: 1.125rem;
    color: #333333;
    font-weight: 500;
    margin-bottom: 8px;
}

.last-updated {
    font-size: 1rem;
    color: #666666;
    font-weight: 400;
}

/* Content */
.content {
    margin-bottom: 80px;
}

/* Sections */
.section {
    margin-bottom: 60px;
}

.section:last-child {
    margin-bottom: 40px;
}

/* Typography */
h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.015em;
    line-height: 1.4;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

p {
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

/* Lists */
ul {
    margin-bottom: 24px;
    padding-left: 0;
    list-style: none;
}

li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: 600;
}

/* Subsections */
.subsection {
    margin-bottom: 40px;
}

.sub-subsection {
    margin-bottom: 32px;
    margin-left: 0;
}

.sub-subsection h4 {
    margin-top: 24px;
}

/* Strong text */
strong {
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 40px 0 60px 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    margin-top: 60px;
}

.footer p {
    font-size: 0.875rem;
    color: #666666;
    margin-bottom: 12px;
}

.footer p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 60px 0 40px 0;
        margin-bottom: 40px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }
    
    h3 {
        font-size: 1.125rem;
        margin-bottom: 14px;
    }
    
    h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .section {
        margin-bottom: 40px;
    }
    
    .subsection {
        margin-bottom: 32px;
    }
    
    .sub-subsection {
        margin-bottom: 24px;
    }
    
    .content {
        margin-bottom: 60px;
    }
    
    .footer {
        padding: 32px 0 48px 0;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .company-name {
        font-size: 0.95rem;
    }
    
    h2 {
        font-size: 1.375rem;
    }
    
    li {
        padding-left: 20px;
    }
}

/* Print Styles */
@media print {
    .container {
        max-width: none;
        padding: 0;
    }
    
    .header {
        padding: 40px 0 30px 0;
        margin-bottom: 30px;
    }
    
    .section {
        margin-bottom: 30px;
        page-break-inside: avoid;
    }
    
    .footer {
        padding: 20px 0;
        margin-top: 30px;
    }
} 