body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.6;

  overflow-y: auto;
}

main {
  flex: 1;
  padding: 1rem 1.5rem;
  background: var(--bg-log-reg);
  background-position: center center, center center;
  background-repeat: no-repeat, no-repeat;
  background-size: cover;
}

.booking-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.booking-title {
  font-size: 2rem;
  font-weight: 700;
  min-width: 100%;
  margin: 0 !important;
}

@media (max-width: 1024px) {
  body::-webkit-scrollbar,
  main::-webkit-scrollbar,
  .calendly-inline-widget::-webkit-scrollbar {
    display: none;
  }

  body,
  main,
  .calendly-inline-widget {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

}