@media screen and (max-width: 1200px) {
  body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow-y: auto;
    padding: 20px 0;
    height: auto;
    min-height: 100vh;
  }
  .logo {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 20px;
    max-width: 90%;
    height: auto;
  }
  .sidebar {
    position: relative;
    right: auto;
    top: auto;
    width: 90%;
    max-width: 600px;
    margin-top: 40px;
    flex-direction: column;
    gap: 30px;
  }
  .sidebar-section {
    width: 100%;
  }
  .sidebar-buttons {
    justify-content: center;
  }
  .footer-info {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
  }
  .container {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0;
    transform-origin: top center;
    flex-shrink: 0;
  }
  .preview-area {
    display: none;
  }
}
