body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #111;
    color: white;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    text-align: center;
    padding: 120px 20px;
    background: linear-gradient(135deg, #0078d4, #005a9e);
    color: white;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.cta {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
}

.cta.small {
    padding: 10px 20px;
}

.content {
    padding: 60px 40px;
    max-width: 900px;
    margin: auto;
}

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: white;
    margin-top: 40px;
}