body {
    font-family: 'Inter', sans-serif;
    background-color: #F8F9FA;
    color: #1E1E1E;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 2rem 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta {
    font-size: 1rem;
    margin-bottom: 2rem;
}

#contact-info a {
    color: #1E1E1E;
    text-decoration: none;
    border-bottom: 2px solid #1E1E1E;
    padding-bottom: 2px;
    transition: color 0.3s, border-bottom-color 0.3s;
}

#contact-info a:hover {
    color: #007bff;
    border-bottom-color: #007bff;
}

footer {
    font-size: 0.8rem;
    color: #6c757d;
    padding: 2rem 0;
}