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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f7;
    padding: 20px;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Typography */
header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 1.1rem;
    color: #6e6e73;
    margin-bottom: 30px;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f5f5f7;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-top: 24px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    color: #1d1d1f;
}

/* Status Banner */
.status-banner {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 16px 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    color: #856404;
}

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

section:first-of-type {
    margin-top: 0;
}

/* Lists */
ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

li {
    margin-bottom: 8px;
    color: #1d1d1f;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Contact Email */
.contact-email {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-email a {
    color: #0066cc;
}

/* Meta Information */
.meta {
    font-size: 0.9rem;
    color: #6e6e73;
    font-style: italic;
    margin-bottom: 24px;
}

/* Footer */
footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e7;
    text-align: center;
    color: #6e6e73;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 8px;
}

footer a {
    color: #6e6e73;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 24px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-top: 32px;
    }
    
    h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px;
        border-radius: 8px;
    }
    
    header h1 {
        font-size: 1.75rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}