/* Tab Styling */
.cs_feature_tabs {
  margin-bottom: 40px;
}

.cs_tab_links {
  display: flex;
  list-style: none;
  padding: 10px;
  margin-bottom: 30px !important;
}

.cs_tab_link {
  flex: 1;
  text-align: center;
  padding: 15px 10px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.cs_tab_link:hover {
  color: #6C5CE7;
}

.cs_tab_link.active {
  color: #6C5CE7;
  border-bottom: 2px solid #6C5CE7;
}

.cs_tab_link i {
  transform: rotate(-45deg);
  margin-right: 8px;
}

.cs_tab_content {
  position: relative;
  overflow: hidden;
}

.cs_tab_item {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.cs_tab_item.active {
  display: block;
}

.cs_feature_content {
  padding: 20px 0;
}

.cs_feature_image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cs_tab_link {
    font-size: 14px;
    padding: 10px 5px;
  }
  
  .cs_feature_image {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .cs_tab_links {
    flex-wrap: wrap;
  }
  
  .cs_tab_link {
    flex: 0 0 50%;
    margin-bottom: 10px;
  }
}