.mega-menu-custom .container {
  display: flex;
/*  min-height: 100vh;*/
}

.mega-menu-custom .sidebar {
  width: 280px;
  background: white;
  border-right: 1px solid #e5e7eb;
  padding: 20px 0;
}

.mega-menu-custom .tab-item {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-right: 3px solid transparent;
}

.mega-menu-custom .tab-item:hover {
  background-color: #f3f4f6;
}

.mega-menu-custom .tab-item.active {
  background-color: #eff6ff;
  border-right-color: #919f04;
}

.mega-menu-custom .tab-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  color: #3b82f6;
}

.mega-menu-custom .tab-content-wrapper {
  display: flex;
      flex-direction: row;
    align-items: center;
}
.mega-menu-custom .tab-desc {
    font-size: 13px;
    line-height: 14px;
}
.mega-menu-custom .tab-title {
  font-weight: 600;
  font-size: 14px;
  color: #1f2937;
  line-height: 15px;
}

.mega-menu-custom .tab-subtitle {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.mega-menu-custom .tab-arrow {
  margin-left: auto;
  color: #9ca3af;
}

.mega-menu-custom .content-area {
  flex: 1;
  padding: 20px;
  background: white;
}

.mega-menu-custom .content-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
}

.mega-menu-custom .content-column {
  display: flex;
  flex-direction: column;
}
.mega-menu-custom .content-grid .column-header a{
  color: #171717;
}
.mega-menu-custom .content-grid .column-item a{color: #8c8c8c}
.mega-menu-custom .content-grid .column-item a:hover{color: #424242 !important;}
.mega-menu-custom .column-header {
  font-weight: 600;
  font-size: 14px;
  color: #374151;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.mega-menu-custom .content-grid  .column-header {margin-bottom: 0px;}
.mega-menu-custom .content-grid .column-item {padding: 2px 0;}
.mega-menu-custom .column-item {
  padding: 8px 0;
  font-size: 14px;
  color: #4b5563;
  border-bottom: 1px solid #f3f4f6;
}

.mega-menu-custom .column-item:last-child {
  border-bottom: none;
}

.mega-menu-custom .see-more {
  color: #3b82f6;
  font-size: 14px;
  margin-top: 16px;
  cursor: pointer;
  text-decoration: none;
}

.mega-menu-custom .see-more:hover {
  text-decoration: underline;
}

.mega-menu-custom .tab-content {
  display: none;
}

.mega-menu-custom .tab-content.active {
  display: block;
}

@media (max-width: 768px) {
  .mega-menu-custom .container {
    flex-direction: column-reverse;
  }

  .mega-menu-custom .sidebar {
    width: 100%;
    order: 2;
  }

  .mega-menu-custom .content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
