body {
  font-family: Arial, sans-serif;
  background-color: #0f1b2e;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
}

/* Header */
header {
  background-color: #122b45;
  padding: 20px;
}

.logo {
  width: 150px;
  height: auto;
}

/* ===== TOP SECTION LAYOUT ===== */
.top-section {
  display: flex;
  justify-content: space-between;
  align-items: center; /* ✅ vertical centering */
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

/* LEFT TEXT */
.sales-pitch {
  flex: 1;
}

.sales-pitch h2 {
  color: #b7ffd3;
  margin-bottom: 15px;
}

.sales-pitch ul {
  padding-left: 20px;
  line-height: 1.6;
}

/* RIGHT SLIDESHOW */
.slideshow-wrapper {
  flex: 1;
}

.slideshow-container {
  position: relative;
  max-width: 512px;
  max-height: 768px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.slide {
  display: none;
}

.slide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* ===== VIDEO CAROUSEL (16:9) ===== */
.video-carousel {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* 16:9 ratio wrapper */
.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.video-slide {
  min-width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
}

.video-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 10px; }
.next { right: 10px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .top-section {
    flex-direction: column;
  }

  .slideshow-container {
    max-width: 100%;
  }
}