Changed around line 1
+ body {
+ font-family: 'Arial', sans-serif;
+ margin: 0;
+ padding: 0;
+ background-color: #f4f4f4;
+ color: #333;
+ }
+
+ .header {
+ background-color: #2c3e50;
+ color: white;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ }
+
+ .nav a {
+ color: white;
+ text-decoration: none;
+ margin: 0 1rem;
+ }
+
+ .hero {
+ background: url('car-wash.jpg') no-repeat center center/cover;
+ height: 100vh;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ color: white;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .cta-button {
+ background-color: #3498db;
+ color: white;
+ padding: 0.5rem 1rem;
+ text-decoration: none;
+ border-radius: 5px;
+ }
+
+ .prices, .location, .booking, .gallery {
+ padding: 2rem;
+ text-align: center;
+ }
+
+ .price-list {
+ display: flex;
+ justify-content: space-around;
+ margin-top: 1rem;
+ }
+
+ .price-item {
+ background-color: white;
+ padding: 1rem;
+ border-radius: 5px;
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
+ }
+
+ .map {
+ margin-top: 1rem;
+ }
+
+ .booking-form {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .booking-form input {
+ margin: 0.5rem 0;
+ padding: 0.5rem;
+ width: 100%;
+ max-width: 300px;
+ }
+
+ .gallery-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1rem;
+ margin-top: 1rem;
+ }
+
+ .gallery-item img {
+ width: 100%;
+ border-radius: 5px;
+ }
+
+ .footer {
+ background-color: #2c3e50;
+ color: white;
+ text-align: center;
+ padding: 1rem;
+ }