.help{
    min-height: calc(100vh - 80px);
    margin: 80px auto 0 auto;
    padding: 40px 10px;
    width: calc(var(--max-width) - 25px);
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.help-sidebar {
    width: 300px;
    background: var(--primary-color-extra-light);
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
    position: sticky;
    left: 0;
    top: 120px;
    height: max-content;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.sidebar-header {
  width: 100%;
  color: var(--white);
  border: none;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.3s;
  background: transparent;
  font-weight: bold;
  margin-bottom: 5px;
}

.sidebar-links {
  display: none;
  flex-direction: column;
  padding-left: 15px;
  gap: 1px- ;
}

.sidebar-links a {
  color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s;
  font-size: 14px;
  width: 100%;
}

.sidebar-links.open { 
    display: flex; 
}

.sidebar-links a.active {
    color: var(--secondary-color);
    background: rgba(var(--white-rgb), 0.03);
}

.sidebar-links a:hover {
    background: rgba(var(--white-rgb), 0.03);
}



.help-container{
  flex: 1;
}

.help-container-header{
  margin-bottom: 60px;
}

.help-container-header h1{
  color: var(--white);
}

.help-container-header p{
  color: var(--text-light);
  font-size: 20px;
}

.help-container-section:not(:last-child){
  margin-bottom: 30px;
}

.help-container-section p{
  color: var(--text-light);
}

.help-container-section h2{
  color: var(--white);
}

.help-container-section ul{
  list-style-type: disclosure-closed;
  color: var(--text-light);
  margin-left: 60px;
  line-height: 30px;
}

.topics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.card {
  background: var(--primary-color-extra-light);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1rem;
}
.card h3 {
  margin-top: 0;
  color: var(--white);
}