/* Start custom CSS for html, class: .elementor-element-2869729 */.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.about-layout {
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.about-layout .container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

/* Sidebar */
.sidebar {
  width: 260px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  background: #1d2a6d;
  color: #fff;
  padding: 14px 18px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

.sidebar ul li:hover {
  background: #2f3fb0;
}

.sidebar ul li.active {
  background: red;
  font-weight: 600;
}

/* Content */
.content {
  flex: 1;
}

.content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.content p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

.sample {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-layout .container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }
}/* End custom CSS */