/* carwash.css */

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #f5f9ff;
  color: #333;
  line-height: 1.6;
  padding: 1rem;
}

header {
  text-align: center;
  background: #003366;
  color: #fff;
  padding: 1rem 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.hero {
  background: linear-gradient(135deg, #b8e4f0, #ffffff, #cce0ff);
  color: rgb(0, 26, 109);
  padding: 2rem 1rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 2rem;
}

.hero h2 {
  margin: 1rem 0 0.5rem;
  font-size: 1.75rem;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.hero button {
  background-color: #00a2dc;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.25rem;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background-color: #f0f0f0;
}

.benefits, .how-it-works {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.benefits h3, .how-it-works h3 {
  margin-bottom: 1rem;
  color: #0072ff;
  font-size: 1.5rem;
}

.benefits ul, .how-it-works ol {
  padding-left: 1.25rem;
}

.benefits li, .how-it-works li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  position: relative;
}

.modal-content h2 {
  color: #0072ff;
  text-align: center;
  margin-bottom: 1rem;
}

.modal-content label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #333;
}

.modal-content input,
.modal-content select {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.25rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.modal-content button[type="submit"] {
  margin-top: 1.5rem;
  width: 100%;
  background-color: #0072ff;
  color: #fff;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-content button[type="submit"]:hover {
  background-color: #005acc;
}

@media (max-width: 600px) {
  .hero h2 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .benefits h3, .how-it-works h3 {
    font-size: 1.25rem;
  }

  .modal-content {
    padding: 1rem;
  }
}
