   body {
      margin: 0;
      padding: 0;
      min-height: 100vh;
    }
    .container {
      text-align: center;
      color: #fff;
      position: relative;
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100vh;
    }
    #panorama {
      width: 100%;
      height: 100%;
    }
    .overlay-text {
      position: absolute;
      top: 20%;
      left: 50%;
      transform: translateX(-50%);
      font-size: 3em;
      color: #ff6200;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
      z-index: 10;
    }
    button {
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
      background-color: #ff6200;
      color: white;
      border: none;
      border-radius: 5px;
      margin-top: 20px;
    }
    button:hover {
      background-color: #e65c00;
    }
    .content-section {
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 50px 20px;
      background-color: #1a1a1a;
      color: #fff;
      margin: 0;
    }
    .content-image {
      max-width: 40%;
      height: 40%;
    }
    .content-text {
      max-width: 40%;
      font-size: 1.3em;
      color: #ccc;
    }
    .content-text h2 {
      color: #ff6200;
      font-size: 2em;
    }
    .strengths-section {
      padding: 50px 20px;
      background-color: #1a1a1a;
      color: #fff;
      margin: 0;
    }
    .strengths-heading {
      font-size: 2em;
      color: #ff6200;
      text-align: center;
      margin-bottom: 30px;
    }
    .strengths-content {
      display: flex;
      justify-content: space-around;
      align-items: flex-start;
    }
    .strengths-image {
      max-width: 40%;
      height: 40%;
    }
    .accordion {
      max-width: 40%;
      color: #ccc;
    }
    .accordion-item {
      margin-bottom: 10px;
    }
    .accordion-item h3 {
      font-size: 1.4em;
      padding: 10px;
      color: #d4af37;
      background-color: #333;
      cursor: pointer;
      border-bottom: 1px solid #444;
      position: relative;
    }
    .accordion-item h3::after {
      content: "+";
      position: absolute;
      right: 10px;
    }
    .accordion-item div {
      display: none;
      padding: 10px;
      background-color: #2a2a2a;
    }
    .accordion-item.active div {
      display: block;
    }
    .accordion-item.active h3::after {
      content: "-";
    }