 
    /* Company Logo in Header */
    .company-logo-header {
      max-width: 200px;
      max-height: 100px;
      margin-bottom: 20px;
      background: white;
      padding: 15px;
      border-radius: 10px;
    }

    /* Company Logo Card - Floating */
    .company-logo-card {
      position: sticky;
      top: 180px;
      background: white;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(94, 35, 157, 0.2);
      text-align: center;
      border: 3px solid transparent;
      background-image: linear-gradient(white, white), 
                        linear-gradient(135deg, #5e239d, #b70468);
      background-origin: border-box;
      background-clip: padding-box, border-box;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .company-logo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(94, 35, 157, 0.3);
    }

    .company-logo-card img {
      max-width: 100%;
      height: auto;
      max-height: 150px;
      margin-bottom: 15px;
      object-fit: contain;
    }

    .company-logo-frame {
      width: 100%;
      min-height: 150px;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
      position: relative;
      overflow: hidden;
    }

    .company-logo-image {
      max-width: 100%;
      max-height: 150px;
      object-fit: contain;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .company-logo-fallback {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #999;
      text-align: center;
      padding: 20px;
    }

    .company-logo-fallback svg {
      opacity: 0.4;
    }

    .company-logo-label {
      margin-top: 10px;
      margin-bottom: 0;
      font-size: 0.85rem;
      font-weight: 500;
    }

    .company-logo-help {
      margin: 5px 0 0 0;
      font-size: 0.75rem;
    }

    .company-logo-card h5 {
      color: #5e239d;
      font-weight: bold;
      margin-bottom: 10px;
      font-size: 1.1rem;
    }

    .company-logo-card p {
      color: #666;
      font-size: 0.9rem;
      margin: 0;
    }

    .company-info-badge {
      display: inline-block;
      background: linear-gradient(to right, #5e239d, #b70468);
      color: white;
      padding: 5px 12px;
      border-radius: 15px;
      font-size: 0.85rem;
      margin: 5px 3px;
      font-weight: 500;
    }

    /* Content Section */
    .content-section {
      background-color: #f8f9fa;
      padding: 40px 20px;
      position: relative;
      z-index: 1;
    }

    .section-title {
      color: #5e239d;
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .overview-content {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      margin-bottom: 30px;
    }

    .overview-content p {
      font-size: 1.05rem;
      line-height: 1.7;
      color: #333;
      text-align: justify;
    }

    /* Custom Accordion Styling */
    .accordion-item {
      border: none;
      margin-bottom: 15px;
      border-radius: 10px !important;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .accordion-button {
      background: linear-gradient(to right, #5e239d, #b70468);
      color: white;
      font-size: 1.3rem;
      font-weight: bold;
      padding: 20px 25px;
      border: none;
    }

    .accordion-button:not(.collapsed) {
      background: linear-gradient(to right, #4a1b7d, #96035a);
      color: white;
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
      border: none;
    }

    .accordion-button::after {
      filter: brightness(0) invert(1);
    }

    .accordion-body {
      padding: 30px;
      background: white;
      font-size: 1.05rem;
      line-height: 1.7;
      color: #333;
    }

    .accordion-body h4 {
      color: #5e239d;
      font-weight: bold;
      margin-top: 25px;
      margin-bottom: 15px;
    }

    .accordion-body h4:first-child {
      margin-top: 0;
    }

    .accordion-body ul {
      padding-left: 20px;
    }

    .accordion-body ul li {
      margin-bottom: 10px;
    }

    /* Tables */
    .table-custom {
      margin: 20px 0;
    }

    .table-custom thead {
      background: linear-gradient(to right, #5e239d, #b70468);
      color: white;
    }

    /* Add padding to body */
    body {
      padding-top: 160px;
      margin: 0;
    }

    .company-container {
      max-width: 1400px;
    }

    .company-badges {
      margin-top: 15px;
    }

    .stock-info {
      margin-top: 20px;
      padding-top: 15px;
      border-top: 2px solid #f0f0f0;
    }

    .stock-symbol {
      font-size: 0.85rem;
      color: #666;
      margin: 0;
    }

    .company-links {
      margin-top: 12px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .company-links .external-link-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 10px;
      background: linear-gradient(to right, #5e239d, #b70468);
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .company-links .external-link-btn:hover {
      background: linear-gradient(to right, #b70468, #7d024a);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(94, 35, 157, 0.3);
    }

    .company-links .external-link-btn .bi {
      font-size: 1rem;
      line-height: 1;
    }

    .company-table {
      border-collapse: collapse;
      width: 100%;
    }

    .company-table-head-row {
      background: linear-gradient(to right, #5e239d, #b70468);
      color: white;
    }

    .company-table-head-cell {
      border: 2px solid #5e239d;
      padding: 12px;
    }

    .company-table-cell {
      border: 1px solid #ccc;
      padding: 12px;
    }

