* {
    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-color: #ffffff;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.header {
    background: #f8f9fa;
    color: #333;
    padding: 40px 30px;
    text-align: center;
    border-bottom: 2px solid #e0e0e0;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.header .subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
}

.last-updated {
    background: #e9ecef;
    padding: 10px 20px;
    border: 1px solid #dee2e6;
    display: inline-block;
    font-size: 0.9rem;
    color: #6c757d;
}

.content {
    padding: 40px 30px;
}

.section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
    padding-left: 15px;
    border-left: 4px solid #6c757d;
}

.section-content {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.subsection {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-left: 3px solid #6c757d;
}

.subsection-title {
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.highlight {
    background: #f8f9fa;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-left: 4px solid #6c757d;
    margin: 15px 0;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border: 1px solid #dee2e6;
    text-align: center;
    margin-top: 30px;
}

.contact-info a {
    color: #212529;
    text-decoration: underline;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

ul {
    margin: 15px 0;
    padding-left: 30px;
}

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

@media (max-width: 768px) {
    .container {
        margin: 10px;
        border-radius: 8px;
    }

    .header {
        padding: 30px 20px;
    }

    .header h1 {
        font-size: 2rem;
    }

    .content {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.2rem;
    }
}