
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #111;
    color: #fff;
}
header {
    background-color: #000;
    padding: 1em 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-weight: bold;
    font-size: 1.5em;
}
nav a {
    margin-left: 2em;
    color: white;
    text-decoration: none;
}
.hero {
    background: url('hero.jpg') center/cover no-repeat;
    text-align: center;
    padding: 140px 20px 80px;
}
.hero h1 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1em;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1em;
}
.btn {
    background-color: #e63946;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: none;
    font-size: 1rem;
}
.tagline {
    margin-top: 2em;
    font-size: 1.2rem;
    color: #e63946;
}
.about {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
    font-size: 1.1rem;
    text-align: center;
    color: #ccc;
}
