:root {
  --primary-color: #222;
  --secondary-color: #e53012;
  --accent-color: #007bff;
  --light-gray: #f5f5f5;
  --dark-gray: #333;
  --text-color: #333;
  --border-radius: 4px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Helvetica', Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #ffffff;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Service Banner Styles */
.service-banner {
  background-color: #f5f5f5;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #eaeaea;
}

.service-item {
  text-align: center;
  padding: 5px 0;
}

.service-item i {
  margin-right: 8px;
  color: var(--primary-color);
}

/* Hero Banner Styles */
.hero-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0;
  color: #fff;
  height: 500px;
  display: flex;
  align-items: center;
}

.hero-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: right;
}

.hero-content h1 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.pre-order-button {
  background-color: var(--secondary-color);
  color: white;
  padding: 15px 40px;
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
}

.pre-order-button:hover {
  background-color: #c52a10;
  transform: translateY(-2px);
}

.free-offer {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
}

.free-offer span {
  font-weight: 800;
}

.hero-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.hero-controls button:hover {
  background-color: white;
  transform: scale(1.1);
}

/* Main Heading Styles */
.main-heading {
  padding: 40px 0 20px;
  background-color: #ffffff;
}

.main-heading h2 {
  font-size: 26px;
  font-weight: 600;
  color: var(--primary-color);
}

/* Scooter Grid Styles */
.scooter-grid {
  padding: 0 0 60px;
  background-color: #ffffff;
}

.scooter-item {
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.scooter-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.scooter-image {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scooter-info {
  padding: 15px;
  text-align: center;
}

.scooter-info h3 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scooter-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.btn-primary {
  background-color: var(--accent-color);
  border: none;
  border-radius: var(--border-radius);
  padding: 8px 15px;
  font-size: 14px;
  transition: var(--transition);
  color: white;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

/* Featured Scooter Styles */
.featured-scooter {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 24px;
  transition: var(--transition);
  height: 350px;
}

.featured-scooter1 {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 24px;
  transition: var(--transition);
  height: 720px;
}

.featured-scooter1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.featured-scooter:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.featured-scooter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-scooter.dark {
  background-color: #1c1c1c;
}

.featured-scooter.light {
  background-color: #f5f5f5;
}

.featured-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
}

.featured-info h3 {
  color: white;
  font-size: 24px;
  margin-bottom: 8px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.featured-info .scooter-price {
  color: white;
  font-size: 20px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.featured-scooter.bestseller {
  height: 600px;
}

.bestseller-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--secondary-color);
  color: white;
  padding: 8px 15px;
  font-weight: bold;
  z-index: 3;
  transform: rotate(-45deg) translate(-20%, -50%);
  transform-origin: top left;
  font-size: 14px;
}

/* Footer Styles */
.footer {
  background-color: #222;
  color: white;
  padding: 40px 0 20px;
}

.footer h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: var(--transition);
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

.copyright {
  font-size: 12px;
  color: #777;
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #333;
}

/* Cookie Notice */
.cookie-notice {
  background-color: rgba(34, 34, 34, 0.95);
  color: white;
  z-index: 1000;
}

.cookie-notice p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.cookie-notice a {
  color: var(--secondary-color);
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content {
      text-align: center;
  }
  
  .hero-controls {
      bottom: 10px;
      right: 10px;
  }
  
  .featured-scooter, 
  .featured-scooter.bestseller {
      height: 250px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
      height: 400px;
  }
  
  .pre-order-button {
      font-size: 22px;
      padding: 12px 30px;
  }
  
  .free-offer {
      font-size: 20px;
  }
  
  .featured-info h3 {
      font-size: 20px;
  }
}

@media (max-width: 576px) {
  .service-item {
      margin-bottom: 5px;
  }
  
  .hero-banner {
      height: 350px;
  }
  
  .featured-scooter,
  .featured-scooter.bestseller {
      height: 200px;
  }
  
  .featured-info h3 {
      font-size: 18px;
  }
  
  .featured-info .scooter-price {
      font-size: 16px;
  }
}


.instruction-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}
.instruction-header {
    background-image: url('../images/bg-anleitung.webp');
    background-size: cover;
    background-position: bottom;
    color: white;
    padding: 100px 0;
    position: relative;
}
.instruction-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.instruction-header h1 {
    position: relative;
    z-index: 1;
    font-weight: 700;
}
.instruction-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}
.instruction-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.instruction-steps {
    counter-reset: step-counter;
    list-style-type: none;
    padding-left: 0;
}
.instruction-steps li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    counter-increment: step-counter;
}
.instruction-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
 
.accessories-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}
.accessories-header {
  background-image: url('../images/bg-acces.webp');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  position: relative;
}
.accessories-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.accessories-header h1 {
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.accessory-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: all 0.3s ease;
}
.accessory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.accessory-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
.accessory-content {
  padding: 20px;
}
.accessory-price {
  font-weight: bold;
  font-size: 18px;
  margin: 10px 0;
  color: var(--primary-color);
}

.terms-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}
.terms-header {
  background-image: url('../images/bg-terms.webp');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  position: relative;
}
.terms-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.terms-header h1 {
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.terms-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}
.terms-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}
.terms-card p {
  margin-bottom: 15px;
  color: #555;
}

.guarantee-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}
.guarantee-header {
  background-image: url('../images/bg-garant.webp');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  position: relative;
}
.guarantee-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.guarantee-header h1 {
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.guarantee-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
  height: 100%;
}
.guarantee-header-box {
  background-color: var(--primary-color);
  color: white;
  padding: 20px;
}
.guarantee-header-box h3 {
  margin: 0;
  color: white;
  font-weight: 600;
}
.guarantee-content {
  padding: 25px;
}
.guarantee-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.return-section {
  padding: 50px 0;
  background-color: #f8f9fa;
}
.return-header {
  background-image: url('../images/bg-return.webp');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 0;
  position: relative;
}
.return-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}
.return-header h1 {
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.return-card {
  background-color: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: all 0.3s ease;
}
.return-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}
.return-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}
.payment-icon {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  margin-top: 15px;
}
.payment-method {
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background-color: #f8f9fa;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  height: 100%;
}
.payment-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background-color: #fff;
}