.page-15-jl-audio {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-15-jl-audio__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .page-15-jl-audio__section:first-of-type {
      padding-top: 10px; /* Small top spacing as per instructions */
    }

    .page-15-jl-audio__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:car_audio,jl_audio,speakers,subwoofers]') no-repeat center center/cover;
      color: #fff;
      text-align: center;
      padding: 100px 20px;
      border-radius: 0;
      margin-bottom: 0;
      box-shadow: none;
    }

    .page-15-jl-audio__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
      line-height: 1.2;
    }

    .page-15-jl-audio__hero-description {
      font-size: 1.2em;
      max-width: 800px;
      margin: 0 auto 30px auto;
      color: #eee;
    }

    .page-15-jl-audio__button {
      display: inline-block;
      background-color: #ff4500; /* Orange-red for call to action */
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-15-jl-audio__button:hover {
      background-color: #e03e00;
    }

    .page-15-jl-audio__title {
      font-size: 2em;
      color: #222;
      text-align: center;
      margin-bottom: 30px;
    }

    .page-15-jl-audio__subtitle {
      font-size: 1.5em;
      color: #444;
      margin-bottom: 15px;
    }

    .page-15-jl-audio__content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .page-15-jl-audio__card {
      background-color: #fefefe;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      padding-bottom: 20px;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }

    .page-15-jl-audio__card:hover {
      transform: translateY(-5px);
    }

    .page-15-jl-audio__card-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-bottom: 1px solid #eee;
    }

    .page-15-jl-audio__card-content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .page-15-jl-audio__card-title {
      font-size: 1.3em;
      color: #333;
      margin-bottom: 10px;
    }

    .page-15-jl-audio__card-text {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .page-15-jl-audio__floating-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-around;
      background-color: #222;
      padding: 10px 0;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
      z-index: 1000;
    }

    .page-15-jl-audio__floating-button {
      background-color: #ff4500;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
      flex: 1;
      text-align: center;
      margin: 0 5px;
    }

    .page-15-jl-audio__floating-button:hover {
      background-color: #e03e00;
    }

    .page-15-jl-audio__faq-item {
      margin-bottom: 10px;
      border: 1px solid #eee;
      border-radius: 5px;
      overflow: hidden;
    }

    .page-15-jl-audio__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #f5f5f5;
      padding: 15px 20px;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      color: #333;
      transition: background-color 0.3s ease;
    }

    .page-15-jl-audio__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-15-jl-audio__faq-question h3 {
      margin: 0;
      font-size: 1.1em;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-15-jl-audio__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-15-jl-audio__faq-item.active .page-15-jl-audio__faq-toggle {
      transform: rotate(45deg); /* Plus to X */
    }

    .page-15-jl-audio__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      background-color: #fff;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
    }

    .page-15-jl-audio__faq-item.active .page-15-jl-audio__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .page-15-jl-audio__hero-title {
        font-size: 2em;
      }

      .page-15-jl-audio__hero-description {
        font-size: 1em;
      }

      .page-15-jl-audio__title {
        font-size: 1.7em;
      }

      .page-15-jl-audio__subtitle {
        font-size: 1.2em;
      }

      .page-15-jl-audio__section {
        padding: 30px 15px;
      }

      .page-15-jl-audio__content-grid {
        grid-template-columns: 1fr;
      }

      .page-15-jl-audio__card-image {
        height: 200px;
      }

      .page-15-jl-audio__floating-button {
        font-size: 0.9em;
        padding: 10px 10px;
        margin: 0 2px;
      }

      /* List Item Responsive - general application */
      .page-15-jl-audio ul,
      .page-15-jl-audio ol {
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
      }

      .page-15-jl-audio li {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-15-jl-audio img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-15-jl-audio__faq-question {
        padding: 12px 15px;
      }
      .page-15-jl-audio__faq-question h3 {
        font-size: 1em;
      }
      .page-15-jl-audio__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-15-jl-audio__hero-section {
        padding: 60px 15px;
      }
      .page-15-jl-audio__floating-buttons {
        flex-direction: column;
        padding: 5px;
      }
      .page-15-jl-audio__floating-button {
        margin: 5px 0;
        width: 100%;
      }
      .page-15-jl-audio {
        padding-bottom: 120px; /* Adjust for stacked buttons */
      }
    }