.main-content::-webkit-scrollbar {
  display: none;
}

.main-content {
  margin-left: 260px;
  flex-grow: 1;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  transition: background-color 0.3s linear;
}

.quote-section {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s ease;
}

.quote-box {
  width: 70%;
  border-radius: 12px;
  transition: background-color 0.3s linear;
  padding: 40px;
  text-align: center;
  font-family: "Inter", "Segoe UI", sans-serif;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.6s ease;
}

.quote-box.show {
  transform: translateY(0);
  opacity: 1;
}

.quote-box h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.quote-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 1px solid #e8e5e1;
  }

  .main-content {
    margin-left: 0;
  }

  .quote-box {
    width: 85%;
    padding: 30px;
  }

  .quote-box h2 {
    font-size: 1.5rem;
  }

  .quote-box p {
    font-size: 1rem;
  }
}
.main-content::-webkit-scrollbar {
  display: none;
}

.main-content {
  margin-left: 260px;
  flex-grow: 1;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
  transition: background-color 0.3s linear;
}

.quote-section {
  height: 100vh;
  width: 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.5s ease;
}

.quote-box {
  width: 70%;
  border-radius: 12px;
  transition: background-color 0.3s linear;
  padding: 40px;
  text-align: center;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.6s ease;
}

.quote-box.show {
  transform: translateY(0);
  opacity: 1;
}

.quote-box h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.quote-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    border-right: none;
    border-bottom: 1px solid #e8e5e1;
  }

  .main-content {
    margin-left: 0;
  }

  .quote-box {
    width: 85%;
    padding: 30px;
  }

  .quote-box h2 {
    font-size: 1.5rem;
  }

  .quote-box p {
    font-size: 1rem;
  }
}
