body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f9f9f9;
    color: #222;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.hero-content {
    text-align: center;
    max-width: 500px;
    padding: 2rem;
}

.hero-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-cta {
    display: inline-block;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.85em 2em;
    border-radius: 32px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}

.hero-cta:hover, .hero-cta:focus {
    background: #1742a0;
    box-shadow: 0 4px 16px rgba(37,99,235,0.15);
}
