.privacy-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.privacy-section:hover {
  transform: translateY(-5px);
}

.privacy-section h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.privacy-section p,
.privacy-section ul {
  margin-bottom: 1rem;
}

.privacy-section ul {
  padding-left: 2rem;
}

.privacy-section ul li {
  margin-bottom: 0.5rem;
}

.toc {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.toc h2 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.toc-list {
  list-style: none;
}

.toc-list li {
  margin-bottom: 0.5rem;
}

.toc-list a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}
.accordion {
  background-color: var(--accent-color);
  color: var(--text-color);
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1rem;
  transition: 0.4s;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion:after {
  content: "+";
  font-weight: bold;
  margin-left: 5px;
}

.accordion.active:after {
  content: "-";
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 99;
  }

  .main-nav.show {
    transform: translateY(0);
  }

  .main-nav li {
    margin: 0.5rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
