body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #0a0a0a;
    color: #f2f2f2;
}

.hero {
    position: relative;
    height: 60vh;
    background: url('https://images.unsplash.com/photo-1520975698519-59c07a9a2f1c?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
}

.title {
    font-size: 4rem;
    z-index: 2;
    letter-spacing: 0.2rem;
    font-weight: 900;
}

.subtitle {
    z-index: 2;
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
}

section {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff4444;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #ff4444;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: 0.3s;
}

.button:hover {
    background: #ff2222;
}

footer {
    text-align: center;
    padding: 20px;
    background: #111;
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.7;
}
