body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f5f5f5;
}

header {
    background: #ff6a00;
    color: white;
    padding: 15px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

.hero {
    background: #333;
    color: white;
    padding: 60px;
    text-align: center;
}

section {
    padding: 40px;
    background: white;
    margin: 20px;
    border-radius: 10px;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    padding: 10px 0;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

button {
    background: #ff6a00;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
}