
body {
font-family: Arial, sans-serif;
margin: 0; padding: 0;
background: white; color: black;
}

header {
background: black;
color: white;
padding: 1rem;
text-align: center;
}

header h1 span {
color: orange;
}

header h1 .blue {
color: blue;
}

nav {
background: #333;
text-align: center;
}

nav a {
color: white;
text-decoration: none;
display: inline-block;
padding: 1rem;
}

.hero {
background: url('https://via.placeholder.com/1200x400?text=Your+360+Header+Image') center/cover no-repeat;
height: 400px;
text-align: center;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
}

section {
padding: 2rem;
}

.price-list, .contact {
background: #f9f9f9;
}

footer {
background: black;
color: white;
text-align: center;
padding: 1rem;
}

form input, form textarea {
width: 100%;
max-width: 400px;
margin: 0.5rem 0;
padding: 0.5rem;
}

form button {
background: orange;
color: white;
border: none;
padding: 0.5rem 1rem;
cursor: pointer;
}




