body {
    background: #fafbfc;
    line-height: 1.7;
}

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

header {
    text-align: center;
    margin-bottom: 48px;
}

h1 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 8px;
}

.last-updated {
    color: var(--text-light);
    font-size: 14px;
}

.subtitle {
    color: var(--text-light);
    font-size: 18px;
}

.content {
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

h2 {
    font-size: 24px;
    font-weight: 500;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

h2:first-child {
    margin-top: 0;
}

p {
    margin-bottom: 16px;
    color: var(--text-dark);
}

ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.email-link {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.25);
}

.email-link:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 122, 255, 0.35);
    text-decoration: none;
}

@media (max-width: 768px) {
    .content {
        padding: 24px;
    }

    h1 {
        font-size: 28px;
    }
}
