body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    color: #222;
}

header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
}

.logo img {
    height: 48px;
    display: block;
}

nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #0078d7;
}

.hero {
    background: #0078d7;
    color: #fff;
    padding: 64px 32px 48px 32px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 32px;
}

.cta-box {
    background: #fff;
    color: #222;
    display: inline-block;
    padding: 24px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cta-box button {
    background: #0078d7;
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.2s;
}

.cta-box button:hover {
    background: #005fa3;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 32px 0;
    background: #fff;
    margin-top: -24px;
}

.tabs button {
    background: #f0f0f0;
    border: none;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
}

.tabs button:hover {
    background: #0078d7;
    color: #fff;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 24px 0;
    margin-top: 32px;
    font-size: 1rem;
}