body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background: #007bff;
    color: white;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: white;
    text-decoration: none;
}

.hero {
    background: url('images/hero.jpg') no-repeat center/cover;
    padding: 100px 20px;
    text-align: center;
    color: white;
}

section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 10px;
}

@media (max-width: 768px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}