/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #1f1f1f;
    line-height: 1.6;
}

/* Container */
.container {
    min-height: 100vh;
    max-width: 896px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}

/* Header */
.header {
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #190939;
}

.header h1 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #190939;
    margin-bottom: 0.5rem;
}

.effective-date {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Introduction */
.intro {
    margin-bottom: 2rem;
}

/* Sections */
.section {
    margin-bottom: 2.5rem;
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #190939;
    margin-bottom: 1rem;
}

.section p {
    margin-bottom: 1rem;
}

.section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.section ul li {
    margin-bottom: 0.5rem;
}

.note {
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* Contact List */
.contact-list {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    list-style: none;
}

/* Links */
a {
    color: #190939;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .header h1 {
        font-size: 1.5rem;
    }

    .section h2 {
        font-size: 1.25rem;
    }
}