.page-jl-wrangler-tailgate-table {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-jl-wrangler-tailgate-table__hero-section {
      position: relative;
      padding: 10px 20px 80px;
      background-color: #0a0a0a;
      color: #fff;
      text-align: center;
      overflow: hidden;
    }

    .page-jl-wrangler-tailgate-table__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.4;
      z-index: 0;
    }

    .page-jl-wrangler-tailgate-table__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px 0;
    }

    .page-jl-wrangler-tailgate-table__hero-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #ffd700; /* Gold-like color */
      line-height: 1.2;
    }

    .page-jl-wrangler-tailgate-table__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .page-jl-wrangler-tailgate-table__cta-button {
      display: inline-block;
      background-color: #ffd700; /* Gold-like color */
      color: #1a1a1a;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-jl-wrangler-tailgate-table__cta-button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-jl-wrangler-tailgate-table__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-bottom: 1px solid #eee;
    }

    .page-jl-wrangler-tailgate-table__section:last-of-type {
      border-bottom: none;
    }

    .page-jl-wrangler-tailgate-table__section-title {
      font-size: 2.2em;
      color: #1a1a1a;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-jl-wrangler-tailgate-table__section-title::after {
      content: '';
      width: 60px;
      height: 3px;
      background-color: #ffd700;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: -10px;
    }

    .page-jl-wrangler-tailgate-table__content-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      align-items: center;
    }

    .page-jl-wrangler-tailgate-table__text-block {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
    }

    .page-jl-wrangler-tailgate-table__image-block {
      flex: 1;
      min-width: 300px;
      max-width: 600px;
      text-align: center;
    }

    .page-jl-wrangler-tailgate-table__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }

    .page-jl-wrangler-tailgate-table__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jl-wrangler-tailgate-table__feature-item {
      background-color: #fefefe;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease;
      border: 1px solid #eee;
      box-sizing: border-box;
    }

    .page-jl-wrangler-tailgate-table__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .page-jl-wrangler-tailgate-table__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      display: inline-block;
    }

    .page-jl-wrangler-tailgate-table__feature-title {
      font-size: 1.4em;
      color: #333;
      margin-bottom: 15px;
    }

    .page-jl-wrangler-tailgate-table__benefits-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-jl-wrangler-tailgate-table__benefit-item {
      background-color: #fefefe;
      padding: 25px;
      border-left: 5px solid #ffd700;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
      flex: 1 1 calc(50% - 20px);
      min-width: 300px;
      box-sizing: border-box;
    }

    .page-jl-wrangler-tailgate-table__benefit-item h3 {
      color: #333;
      margin-top: 0;
      font-size: 1.2em;
    }

    .page-jl-wrangler-tailgate-table__support-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jl-wrangler-tailgate-table__support-item {
      background-color: #fefefe;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      text-align: center;
      border: 1px solid #eee;
    }

    .page-jl-wrangler-tailgate-table__support-item h3 {
      font-size: 1.3em;
      color: #333;
      margin-bottom: 15px;
    }

    .page-jl-wrangler-tailgate-table__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
    }

    .page-jl-wrangler-tailgate-table__faq-item {
      background-color: #fefefe;
      border: 1px solid #eee;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

    .page-jl-wrangler-tailgate-table__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #f0f0f0;
      color: #333;
      font-weight: bold;
      font-size: 1.1em;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-jl-wrangler-tailgate-table__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-jl-wrangler-tailgate-table__faq-question h3 {
      margin: 0;
      font-size: 1em; /* Adjust to fit the parent font size */
      pointer-events: none;
      flex-grow: 1;
    }

    .page-jl-wrangler-tailgate-table__faq-toggle {
      font-size: 1.5em;
      margin-left: 15px;
      line-height: 1;
      pointer-events: none;
      transition: transform 0.3s ease;
    }

    .page-jl-wrangler-tailgate-table__faq-item.active .page-jl-wrangler-tailgate-table__faq-toggle {
      transform: rotate(45deg);
    }

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

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

    .page-jl-wrangler-tailgate-table__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-jl-wrangler-tailgate-table__blog-card {
      background-color: #fefefe;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease;
      border: 1px solid #eee;
    }

    .page-jl-wrangler-tailgate-table__blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .page-jl-wrangler-tailgate-table__blog-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .page-jl-wrangler-tailgate-table__blog-content {
      padding: 25px;
    }

    .page-jl-wrangler-tailgate-table__blog-title {
      font-size: 1.3em;
      margin-bottom: 10px;
      color: #333;
      text-decoration: none;
    }

    .page-jl-wrangler-tailgate-table__blog-title a {
      color: #333;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .page-jl-wrangler-tailgate-table__blog-title a:hover {
      color: #ffd700;
    }

    .page-jl-wrangler-tailgate-table__blog-excerpt {
      font-size: 0.95em;
      color: #666;
      margin-bottom: 20px;
    }

    .page-jl-wrangler-tailgate-table__blog-readmore {
      display: inline-block;
      color: #ffd700;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-jl-wrangler-tailgate-table__blog-readmore:hover {
      color: #e6c200;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-jl-wrangler-tailgate-table__hero-section {
        padding: 10px 15px 60px;
      }

      .page-jl-wrangler-tailgate-table__hero-title {
        font-size: 2em;
      }

      .page-jl-wrangler-tailgate-table__hero-subtitle {
        font-size: 1em;
      }

      .page-jl-wrangler-tailgate-table__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-jl-wrangler-tailgate-table__section {
        padding: 40px 15px;
      }

      .page-jl-wrangler-tailgate-table__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
      }

      .page-jl-wrangler-tailgate-table__content-wrapper {
        flex-direction: column;
      }

      .page-jl-wrangler-tailgate-table__text-block,
      .page-jl-wrangler-tailgate-table__image-block {
        min-width: unset;
        max-width: 100%;
      }

      .page-jl-wrangler-tailgate-table__features-grid,
      .page-jl-wrangler-tailgate-table__support-grid,
      .page-jl-wrangler-tailgate-table__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-jl-wrangler-tailgate-table__feature-item,
      .page-jl-wrangler-tailgate-table__benefit-item,
      .page-jl-wrangler-tailgate-table__support-item,
      .page-jl-wrangler-tailgate-table__blog-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important;
      }

      .page-jl-wrangler-tailgate-table__benefits-list {
        flex-direction: column;
        gap: 15px;
      }

      .page-jl-wrangler-tailgate-table__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-jl-wrangler-tailgate-table__faq-answer {
        padding: 0 20px;
      }

      .page-jl-wrangler-tailgate-table__faq-item.active .page-jl-wrangler-tailgate-table__faq-answer {
        padding: 15px 20px !important;
      }

      .page-jl-wrangler-tailgate-table__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      /* List container responsiveness */
      .page-jl-wrangler-tailgate-table__benefits-list,
      .page-jl-wrangler-tailgate-table__faq-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      /* Word wrap for list items */
      .page-jl-wrangler-tailgate-table__feature-item p,
      .page-jl-wrangler-tailgate-table__benefit-item p,
      .page-jl-wrangler-tailgate-table__support-item p,
      .page-jl-wrangler-tailgate-table__blog-excerpt {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
    }

    @media (max-width: 480px) {
      .page-jl-wrangler-tailgate-table__hero-title {
        font-size: 1.8em;
      }

      .page-jl-wrangler-tailgate-table__section-title {
        font-size: 1.6em;
      }
    }