/* Content area (text, logo, button) */
.csp-slide .csp-content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  width: 45%; /* fixed left container width */
  color: #000;
}

/* Each Slide */
.csp-slide {
  display: none;
  width: 100%;
  height: 100vh; /* fullscreen */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  transition: opacity 0.5s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .csp-slide .csp-content { width: 50%; }
}

@media (max-width: 992px) {
  .csp-slide .csp-content { width: 60%; left: 5%; }
  .csp-logo { max-width: 120px; }
  .csp-btn { padding: 10px 20px; font-size: 14px; }
}

@media (max-width: 768px) {
  .csp-slide .csp-content {
    width: 90%;
    left: 5%;
    bottom: 40px;
    top: auto;
    transform: none;
  }
  .csp-logo { max-width: 100px; margin-bottom: 10px; }
  .csp-btn { padding: 8px 18px; font-size: 13px; }
}

@media (max-width: 480px) {
  .csp-slide .csp-content { left: 15px; bottom: 30px; }
  .csp-btn { font-size: 12px; padding: 6px 16px; }
}
