* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #ffffff;
  padding-bottom: 120px; /* Increased to accommodate larger footer */
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10%;
  border-bottom: 1px solid #e0e0e0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px;
  margin-right: 5px;
}

.logo-text {
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
}

.header-text {
  color: #333;
  font-size: 16px;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  min-height: 60vh;
}

.selection-title {
  font-size: 24px;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

.vehicle-options {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 420px;
  gap: 15px;
}

.vehicle-button {
  padding: 15px;
  border: 1px solid #e0e0e0;
  background-color: #f9f9f9;
  border-radius: 25px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vehicle-button:hover {
  background-color: #f0f0f0;
  border-color: #ccc;
}

.footer {
  text-align: center;
  padding: 20px;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f9f9f9;
  border-top: 1px solid #e0e0e0;
}

.footer-links {
  margin-bottom: 10px;
}

.footer a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  margin: 0 10px;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 12px;
  color: #888;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
}

.footer-company {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}

.notification {
  position: fixed;
  bottom: 130px; /* Adjusted to not overlap with the new footer */
  right: 20px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  max-width: 300px;
}

.notification-icon {
  margin-right: 10px;
  font-size: 24px;
}

.notification-text {
  font-size: 14px;
  line-height: 1.4;
}

.notification-count {
  color: #00a651;
  font-weight: bold;
}

.close-button {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #999;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
    padding: 15px 5%;
  }

  .header-text {
    margin-top: 10px;
  }

  .footer-links a {
    margin: 0 5px;
  }
}

@media (max-width: 480px) {
  .notification {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}
