      /* ------------------------------------------------------------
         1) Products Offering Section
         ------------------------------------------------------------ */
      /* Make the section itself full-bleed (100vw). 
         The negative margin technique is replaced by the 
         "left: 50%; transform" approach below. */
         .product-offering {
            position: relative;
            left: 50%;
            right: 50%;
            margin-left: -50vw;
            margin-right: -50vw;
            width: 100vw;
            background: #050038; /* Dark navy background for this section */
            color: #fff;         /* White text on dark background */
          }
      
          /* Left / Right section layout (inside the product-offering .container) */
          .product-offering .container {
            display: flex;
            flex-wrap: wrap; /* in case it needs to wrap on mobile */
            align-items: flex-start;
          }
      
          /* LEFT SECTION */
          .left-section {
            flex: 1;
            margin-right: 2rem;
          }
          .left-section h2 {
            font-size: 42px;
            margin-bottom: 1rem;
            margin-top: 0;
            background: linear-gradient(90deg, #BC42B9 4%, #4BC7E8 96%);
            -webkit-background-clip: text;  /* Safari/Chrome support */
            -webkit-text-fill-color: transparent;
    
          }
          .left-section p {
            margin-bottom: 2rem;
            line-height: 1.5;
            width: 90%;
            font-size: 18px;
          }
          .image-container {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
          }
          .image-container img {
            max-width: 100%;
            border-radius: 4px;
            margin-left: -30px; 
          }
      
          /* RIGHT SECTION (Accordion) */
          .right-section {
            flex: 1;
          }
          details {
            margin-bottom: 18px;
            background: #050038; /* same shade as parent background, to blend in */
            padding: 1rem;
            border-bottom: 1px solid #696688;
            border-radius: 0;
          }
          summary {
            color: #B896FF;
            cursor: pointer;
            font-weight: bold;
            font-size: 28px;
            outline: none;
            margin: 0; 
            padding: 0; 
            list-style: none;
            display: flex;
            align-items: center;
            line-height: 41.15px;
            margin-bottom: 16px;
          }
          summary::-webkit-details-marker {
            display: none;
          }
          summary::marker {
            content: "";
          }
          /* Custom icons: + / - (or swapped in your case) */
          summary::before {
            content: url('https://worthai.com/wp-content/themes/joinworth/images/ic_baseline-minus%20(1).png');
            display: inline-block;
            margin-right: 0.9rem;
            height: 40px;
          }
          details[open] summary::before {
            content: url('https://worthai.com/wp-content/themes/joinworth/images/ic_baseline-minus.png');
            height: 40px;
          }
          details p {
            margin-top: 0.5rem;
            line-height: 1.4;
            font-size: 0.95rem;
            margin-left: 48px;
          }


@media (max-width: 768px) {

  .product-offering{
    padding-bottom: 0;
  }

  .product-offering .container {
      flex-direction: column; /* Stack sections vertically */
      align-items: center; /* Center-align content */
      text-align: center;
  }
  .left-section {
      margin-right: 0;
      width: 100%;
  }
  .left-section h2 {
      font-size: 32px; /* Reduce heading size */
  }
  .left-section p {
      width: 100%;
      font-size: 16px;
  }
  .image-container {
      width: 100%;
      text-align: center;
  }
  .image-container img {
      width: 90%;
      max-width: 400px; /* Set max width for large screens */
      margin: 0 auto; /* Center the image */
  }
  .right-section {
      width: 100%;
      margin-top: 1.5rem;
  }
  summary {
      font-size: 18px !important; /* Reduce summary text size */
  }
  details p {
      font-size: 14px; /* Adjust paragraph text size */
      margin-left: 0;
  }
  summary::before {
    height: 30px;
    scale: 0.9;
  }
}

/* 📱📲 Mobile Horizontal & iPad-Friendly Layout */
@media (max-width: 1024px) {

.product-offering{
  padding-bottom: 10%;
}

  .product-offering .container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .left-section {
      width: 100%;
      margin-right: 0;
  }

  .left-section h2 {
      font-size: 36px;
  }

  .left-section p {
      width: 95%;
      font-size: 17px;
  }

  .image-container {
      width: 100%;
      text-align: center;
  }

  .image-container img {
      width: 85%;
      max-width: 450px;
      margin: 0 auto;
  }

  .right-section {
      width: 100%;
      margin-top: 2rem;
  }

  summary {
      font-size: 24px;
  }

  details p {
      font-size: 15px;
      margin-left: 0;
  }

  summary::before {
      height: 35px;
      scale: 0.95;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .product-offering .container {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
  }

  .left-section {
      width: 90%;
      text-align: center;
  }

  .left-section h2 {
      font-size: 30px;
  }

  .left-section p {
      font-size: 16px;
      line-height: 1.4;
  }

  .image-container img {
      width: 80%;
      max-width: 350px;
  }

  .right-section {
      width: 100%;
      margin-top: 1.5rem;
  }

  summary {
      font-size: 20px;
  }

  details p {
      font-size: 14px;
  }

  summary::before {
      height: 30px;
      scale: 0.9;
  }
}
