body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: #fafafa;
    color: #222;
    line-height: 1.6;
}

header {
    background: url('/assets/hero.jpg') center/cover no-repeat;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

header h1 {
    font-size: 3rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin: 0;
}

header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 20px auto 0;
    text-shadow: 0 3px 12px rgba(0,0,0,0.4);
}

.cta {
    margin-top: 30px;
}

.cta a {
    background: #ff6f3c;
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.cta a:hover {
    background: #e85c2d;
}

section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #111;
    color: #ccc;
    font-size: 0.9rem;
}