body {
  background-color: white;
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: center center;
  font-family: 'Frank Ruhl Libre', serif;
  margin: 0;
  padding: 0;
}

.top-header {
  background-color: white;
  color: black;
  padding: 15px 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  font-size: 18px;
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-header a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-header a:hover {
  color: #ffb4a2;
}

.top-header img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  margin-right: auto;
}

.header-banner {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../Images/truck.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 4px;
}

.header-banner p {
  color: #ffffff;
  font-size: 35px;
  margin: 0;
}

h1 {
  color: #ffffff;
  font-family: 'Frank Ruhl Libre', serif;
  margin: 0;
  font-size: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.contact-container {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
}

.form {
  margin-bottom: 15px;
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 20px;
  max-width: 400px;
  margin: 20px auto;
}

.price-info {
  display: block;
  background-color: #ffffff;
  border: 1px solid #dd22a8;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.price-info p {
  margin: 6px 0;
  color: #222;
}

.price-info strong {
  color: #dd22a8;
}

.order-result {
  display: block;
  background-color: #ffffff;
  border: 1px solid #22a8dd;
  color: #111;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-weight: 600;
}

.order-result:empty {
  display: none;
}

.order-result.error {
  border-color: #b91c1c;
  color: #b91c1c;
}

.order-result.success {
  border-color: #0b6623;
  color: #0b6623;
}

.site-footer {
  text-align: center;
  padding: 20px;
  color: #666;
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.site-footer p {
  margin: 0;
}