body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    color: #111111;
}

.container {
    max-width: 680px;
    padding: 80px 20px;
    text-align: center;
}

h1 {
    font-weight: 500;
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.content {
    color: #828282;
}

p {
    line-height: 1.7;
    margin-bottom: 28px;
    font-size: 16px;
    font-weight: 400;
}

a {
    color: #828282;
    text-decoration: underline;
    text-rendering: optimizeLegibility;
}

a:hover {
    color: #555555;
}

hr {
    border: 0;
    border-top: 1px solid #f0f0f0;
    margin: 50px 0 40px 0;
}

h2 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
    color: #222222;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
