






    .main-container {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      background-color: var(--section-bg);
      box-shadow: var(--shadow-soft);
      border-radius: 12px;
      overflow: hidden;
    }

    .title-section {
      padding: 2rem 1.5rem;
      text-align: center;
      background: linear-gradient(to bottom, #f1f5f9, #e2e8f0);
      color: var(--text-color);
      display: flex;
      flex-direction: column;
      justify-content: center;
      transition: background 0.3s ease;
    }

    .image-container {
      position: relative;
      width: 100%;
      height: 60vh;
      min-height: 300px;
      background-color: var(--viewer-bg);
    }

    #panorama {
      width: 100%;
      height: 100%;
      display: block;
      border: none;
      border-top: 1px solid #cbd5e1;
    }

    .pnlm-controls {
      background: var(--viewer-controls-bg) !important;
      border-radius: 8px !important;
      right: 15px !important;
      bottom: 15px !important;
    }

    .pnlm-zoom-controls {
      bottom: 60px !important;
    }

    @media (min-width: 992px) {
      .main-container {
        flex-direction: row;
      }

      .title-section {
        flex: 0 0 35%;
        max-width: 35%;
        padding: 3rem 2rem;
        text-align: left;
        align-items: flex-start;
      }

      .image-container {
        flex: 0 0 65%;
        max-width: 65%;
        height: 100vh;
        border-left: 1px solid #e2e8f0;
      }
    }

    .content-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1.5rem;
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease-in-out;
    }
