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

.static-page-container h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #3498db;
    padding-bottom: 0.5rem;
}

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

.page-section {
    margin-bottom: 2.5rem;
}

.page-section h2 {
    color: #34495e;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.page-section h3 {
    color: #4a5568;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    margin-top: 1.25rem;
}

.page-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-list,
.info-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li,
.info-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.info-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.5rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .static-page-container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .static-page-container h1 {
        font-size: 2rem;
    }

    .page-section h2 {
        font-size: 1.5rem;
    }
}
