.licenses-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 2rem 0;
}

.licenses-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 50px;
  box-sizing: border-box;
}

.licenses-slides-container {
  display: flex;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.license-slide {
  flex: 0 0 calc(100% / 3);
  padding: 10px;
  box-sizing: border-box;
  min-width: 0;
}

.license-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.licenses-slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.licenses-slider-nav .slider-btn {
  pointer-events: auto;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.licenses-slider-nav .slider-btn:hover:not(:disabled) {
  background: #f0f0f0;
  transform: scale(1.05);
}

.licenses-slider-nav .slider-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.prev-btn {
  margin-left: 10px;
}

.next-btn {
  margin-right: 10px;
}

/* Mobile styles */
@media (max-width: 768px) {
  .licenses-slider-wrapper {
    padding: 0 40px;
  }
  
  .license-slide {
    flex: 0 0 100%;
  }
  
  .licenses-slider-nav .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .prev-btn {
    margin-left: 5px;
  }
  
  .next-btn {
    margin-right: 5px;
  }
}

/* Indicators (optional) */
.licenses-slider-indicators {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.license-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.license-indicator.active {
  background: #007bff;
}