/* Network Get Started CSS for Layout 1 */
.net-started-container {
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.net-started-header {
  margin-bottom: 32px;
}
.net-started-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}
.net-started-header p {
  font-size: 13px;
  color: #374151;
  margin: 0;
}
.net-started-header p a {
  color: #3b82f6;
  text-decoration: none;
}
.net-started-header p a:hover {
  text-decoration: underline;
}

.net-started-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .net-started-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .net-started-grid {
    grid-template-columns: 1fr;
  }
}
.sidebar-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #555;
    z-index: 10000;
}

/* Mobile view me hi show hoga */
@media (max-width: 768px) {
    .sidebar-close {
        display: block;
    }
}
.net-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.net-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 20px;
  margin-bottom: 16px;
}

.net-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
}

.net-card p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.net-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: auto;
}

.net-card-links a {
  font-size: 12px;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.net-card-links a::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #e5e7eb;
  margin-left: 12px;
}

.net-card-links a:last-child::after {
  display: none;
}

.net-card-links a:hover {
  text-decoration: underline;
}
