body {
  font-family: 'Inter', sans-serif;
  color: #2C2C2C;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* Animations */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 1s ease-out forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* CTA Below Banner (Optional) */
.campaign-cta {
  text-align: center;
  margin: 12px auto 30px;
  font-size: 1.1rem;
}

.campaign-cta a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.campaign-cta a:hover {
  text-decoration: underline;
}
.brabus-banner-link {
  display: block;
  text-decoration: none;
  color: inherit;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.brabus-banner-container {
  display: flex;
  flex-direction: column;
  background: #fff;
}

.brabus-banner {
  width: 100%;
  height: auto;
  display: block;
}

.banner-text {
  padding: 2rem;
  text-align: center;
}

.banner-text h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.banner-text .tagline {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #007bff;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #0056cc;
}
@media (max-width: 600px) {
  .banner-text {
    padding: 1.25rem;
  }

  .banner-text h2 {
    font-size: 1.4rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}
.image-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.image-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

.image-carousel::-webkit-scrollbar {
  display: none;  /* Chrome, Safari */
}

.image-carousel img {
  flex-shrink: 0;
  width: 300px;
  height: auto;
  margin-right: 10px;
  border-radius: 10px;
}

.arrow {
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
}

.arrow.left {
  position: absolute;
  left: 0;
}

.arrow.right {
  position: absolute;
  right: 0;
}

.luxury-tagline {
  font-style: italic;
  font-size: 1.25rem;
  color: #333;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}




