body {
    font-family: 'Inter', sans-serif;
    background-color: #f1f5f9;
    color: #1B365D;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
}
h1 {
    font-size: 2.5rem;
    color: #1B365D;
    border-bottom: 2px solid #4A90B8;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}
p {
    margin-bottom: 1rem;
    color: #475569;
}
a {
    color: #4A90B8;
    text-decoration: none;
    font-weight: 600;
}
a:hover {
    text-decoration: underline;
}
.home-link {
    display: inline-block;
    margin-bottom: 2rem;
}
.home-link:hover {
    text-decoration: none;
    transform: translateX(-4px);
    transition: transform 0.2s ease-out;
}