/* General styling for the page content, scoped to the page's main class */
    .page-jeep-wrangler-jl-hardtop {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Section styling */
    .page-jeep-wrangler-jl-hardtop__section-title {
      font-size: 2.5rem;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 20px;
      padding-top: 40px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__section-subtitle {
      font-size: 1.2rem;
      color: #666;
      text-align: center;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      padding: 0 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* HERO Section */
    .page-jeep-wrangler-jl-hardtop__hero-section {
      position: relative;
      width: 100%;
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding-top: 10px; /* Minimal padding-top, assuming body handles --header-offset */
      box-sizing: border-box;
    }

    .page-jeep-wrangler-jl-hardtop__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .page-jeep-wrangler-jl-hardtop__hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.6); /* Allowed for background images to improve text readability */
    }

    .page-jeep-wrangler-jl-hardtop__hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4);
      border-radius: 10px;
    }

    .page-jeep-wrangler-jl-hardtop__hero-title {
      font-size: 3.5rem;
      margin-bottom: 20px;
      color: #fff;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__hero-description {
      font-size: 1.3rem;
      margin-bottom: 30px;
      color: #eee;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__hero-cta {
      display: inline-block;
      background-color: #e74c3c; /* Reddish tone for CTA */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2rem;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-jeep-wrangler-jl-hardtop__hero-cta:hover {
      background-color: #c0392b;
    }

    /* Introduction Section */
    .page-jeep-wrangler-jl-hardtop__introduction-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .page-jeep-wrangler-jl-hardtop__intro-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-jeep-wrangler-jl-hardtop__intro-item {
      background-color: #f0f0f0;
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-jeep-wrangler-jl-hardtop__intro-heading {
      font-size: 1.8rem;
      color: #e74c3c;
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__intro-text {
      font-size: 1rem;
      color: #555;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Quick Access Section */
    .page-jeep-wrangler-jl-hardtop__quick-access-section {
      padding: 60px 20px;
      background-color: #2c3e50;
      color: #fff;
    }

    .page-jeep-wrangler-jl-hardtop__quick-access-section .page-jeep-wrangler-jl-hardtop__section-title,
    .page-jeep-wrangler-jl-hardtop__quick-access-section .page-jeep-wrangler-jl-hardtop__section-subtitle {
      color: #fff;
    }

    .page-jeep-wrangler-jl-hardtop__access-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }

    .page-jeep-wrangler-jl-hardtop__access-button {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 15px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.1rem;
      font-weight: bold;
      transition: background-color 0.3s ease;
      flex-grow: 1;
      max-width: 220px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-jeep-wrangler-jl-hardtop__access-button:hover {
      background-color: #c0392b;
    }

    /* Core Games Section */
    .page-jeep-wrangler-jl-hardtop__games-section {
      padding: 60px 20px;
      background-color: #f8f8f8;
    }

    .page-jeep-wrangler-jl-hardtop__game-categories {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-jeep-wrangler-jl-hardtop__game-category {
      background-color: #fff;
      padding: 25px;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
    }

    .page-jeep-wrangler-jl-hardtop__game-icon {
      margin-bottom: 15px;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 80px; /* Standard height for gamelogo */
    }

    .page-jeep-wrangler-jl-hardtop__game-icon img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }

    .page-jeep-wrangler-jl-hardtop__game-title {
      font-size: 1.6rem;
      color: #2c3e50;
      margin-bottom: 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__game-description {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__game-link {
      display: inline-block;
      background-color: #3498db; /* Blueish tone */
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-jeep-wrangler-jl-hardtop__game-link:hover {
      background-color: #2980b9;
    }

    /* Promotions Section */
    .page-jeep-wrangler-jl-hardtop__promotions-section {
      padding: 60px 20px;
      background-color: #ecf0f1;
    }

    .page-jeep-wrangler-jl-hardtop__promo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-jeep-wrangler-jl-hardtop__promo-card {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      text-align: center;
      box-sizing: border-box;
    }

    .page-jeep-wrangler-jl-hardtop__promo-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-jeep-wrangler-jl-hardtop__promo-title {
      font-size: 1.5rem;
      color: #2c3e50;
      margin: 20px 15px 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__promo-description {
      font-size: 0.95rem;
      color: #666;
      padding: 0 15px 20px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__promo-button {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1rem;
      font-weight: bold;
      margin-bottom: 20px;
      transition: background-color 0.3s ease;
    }

    .page-jeep-wrangler-jl-hardtop__promo-button:hover {
      background-color: #c0392b;
    }

    /* Security Section */
    .page-jeep-wrangler-jl-hardtop__security-section {
      padding: 60px 20px;
      background-color: #34495e;
      color: #fff;
    }

    .page-jeep-wrangler-jl-hardtop__security-section .page-jeep-wrangler-jl-hardtop__section-title,
    .page-jeep-wrangler-jl-hardtop__security-section .page-jeep-wrangler-jl-hardtop__section-subtitle {
      color: #fff;
    }

    .page-jeep-wrangler-jl-hardtop__security-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto 40px;
    }

    .page-jeep-wrangler-jl-hardtop__security-item {
      background-color: rgba(255, 255, 255, 0.1);
      padding: 30px;
      border-radius: 8px;
      text-align: center;
      box-sizing: border-box;
    }

    .page-jeep-wrangler-jl-hardtop__security-icon {
      width: 100%;
      max-width: 200px; /* Ensuring minimum size for images */
      height: auto;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-jeep-wrangler-jl-hardtop__security-heading {
      font-size: 1.8rem;
      color: #f1c40f; /* Yellowish tone for highlights */
      margin-bottom: 15px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__security-text {
      font-size: 1rem;
      color: #eee;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__contact-cta {
      text-align: center;
    }

    .page-jeep-wrangler-jl-hardtop__contact-button {
      display: inline-block;
      background-color: #2ecc71; /* Greenish tone */
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 1.2rem;
      font-weight: bold;
      transition: background-color 0.3s ease;
    }

    .page-jeep-wrangler-jl-hardtop__contact-button:hover {
      background-color: #27ae60;
    }

    /* FAQ Section */
    .page-jeep-wrangler-jl-hardtop__faq-section {
      padding: 60px 20px;
      background-color: #fff;
    }

    .page-jeep-wrangler-jl-hardtop__faq-list {
      max-width: 900px;
      margin: 0 auto;
    }

    .page-jeep-wrangler-jl-hardtop__faq-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-jeep-wrangler-jl-hardtop__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background-color: #eee;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-jeep-wrangler-jl-hardtop__faq-question:hover {
      background-color: #e0e0e0;
    }

    .page-jeep-wrangler-jl-hardtop__faq-heading {
      font-size: 1.2rem;
      color: #2c3e50;
      margin: 0;
      pointer-events: none; /* Prevent h3 from blocking click event */
      flex-grow: 1;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__faq-toggle {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e74c3c;
      margin-left: 15px;
      pointer-events: none; /* Prevent span from blocking click event */
      transition: transform 0.3s ease;
    }

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

    .page-jeep-wrangler-jl-hardtop__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-jeep-wrangler-jl-hardtop__faq-answer p {
      margin: 0;
      color: #555;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* Blog Section */
    .page-jeep-wrangler-jl-hardtop__blog-section {
      padding: 60px 20px;
      background-color: #f8f8f8;
    }

    .page-jeep-wrangler-jl-hardtop__blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-jeep-wrangler-jl-hardtop__blog-post {
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
    }

    .page-jeep-wrangler-jl-hardtop__blog-image {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .page-jeep-wrangler-jl-hardtop__blog-title {
      font-size: 1.4rem;
      color: #2c3e50;
      margin: 20px 20px 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__blog-title a {
      text-decoration: none;
      color: inherit;
      transition: color 0.3s ease;
    }

    .page-jeep-wrangler-jl-hardtop__blog-title a:hover {
      color: #e74c3c;
    }

    .page-jeep-wrangler-jl-hardtop__blog-meta {
      font-size: 0.85rem;
      color: #999;
      margin: 0 20px 10px;
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__blog-excerpt {
      font-size: 0.95rem;
      color: #666;
      padding: 0 20px 20px;
      flex-grow: 1; /* Pushes button to bottom */
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    .page-jeep-wrangler-jl-hardtop__blog-readmore {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: bold;
      margin: 0 20px 20px;
      align-self: flex-start;
      transition: background-color 0.3s ease;
    }

    .page-jeep-wrangler-jl-hardtop__blog-readmore:hover {
      background-color: #c0392b;
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {
      .page-jeep-wrangler-jl-hardtop__hero-title {
        font-size: 3rem;
      }
      .page-jeep-wrangler-jl-hardtop__hero-description {
        font-size: 1.2rem;
      }
      .page-jeep-wrangler-jl-hardtop__section-title {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 768px) {
      .page-jeep-wrangler-jl-hardtop__hero-section {
        min-height: 400px;
      }
      .page-jeep-wrangler-jl-hardtop__hero-title {
        font-size: 2.2rem;
      }
      .page-jeep-wrangler-jl-hardtop__hero-description {
        font-size: 1rem;
      }
      .page-jeep-wrangler-jl-hardtop__hero-cta {
        padding: 12px 25px;
        font-size: 1rem;
      }

      .page-jeep-wrangler-jl-hardtop__section-title {
        font-size: 1.8rem;
        padding-top: 30px;
      }
      .page-jeep-wrangler-jl-hardtop__section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
      }

      .page-jeep-wrangler-jl-hardtop__intro-grid,
      .page-jeep-wrangler-jl-hardtop__game-categories,
      .page-jeep-wrangler-jl-hardtop__promo-grid,
      .page-jeep-wrangler-jl-hardtop__security-grid,
      .page-jeep-wrangler-jl-hardtop__blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-jeep-wrangler-jl-hardtop__intro-item,
      .page-jeep-wrangler-jl-hardtop__game-category,
      .page-jeep-wrangler-jl-hardtop__promo-card,
      .page-jeep-wrangler-jl-hardtop__security-item,
      .page-jeep-wrangler-jl-hardtop__blog-post {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
      .page-jeep-wrangler-jl-hardtop__intro-item {
        padding: 20px;
      }
      .page-jeep-wrangler-jl-hardtop__intro-heading {
        font-size: 1.5rem;
      }
      .page-jeep-wrangler-jl-hardtop__intro-text {
        font-size: 0.9rem;
      }

      .page-jeep-wrangler-jl-hardtop__access-button {
        max-width: 100%;
        font-size: 1rem;
        padding: 12px 20px;
      }

      .page-jeep-wrangler-jl-hardtop__game-title {
        font-size: 1.4rem;
      }
      .page-jeep-wrangler-jl-hardtop__game-description {
        font-size: 0.9rem;
      }
      .page-jeep-wrangler-jl-hardtop__game-link {
        padding: 8px 15px;
        font-size: 0.9rem;
      }

      .page-jeep-wrangler-jl-hardtop__promo-title {
        font-size: 1.3rem;
      }
      .page-jeep-wrangler-jl-hardtop__promo-description {
        font-size: 0.9rem;
      }
      .page-jeep-wrangler-jl-hardtop__promo-button {
        padding: 10px 20px;
        font-size: 0.9rem;
      }

      .page-jeep-wrangler-jl-hardtop__security-heading {
        font-size: 1.5rem;
      }
      .page-jeep-wrangler-jl-hardtop__security-text {
        font-size: 0.9rem;
      }
      .page-jeep-wrangler-jl-hardtop__contact-button {
        padding: 12px 25px;
        font-size: 1rem;
      }

      .page-jeep-wrangler-jl-hardtop__faq-question {
        padding: 15px;
      }
      .page-jeep-wrangler-jl-hardtop__faq-heading {
        font-size: 1.1rem;
      }
      .page-jeep-wrangler-jl-hardtop__faq-toggle {
        font-size: 1.3rem;
      }
      .page-jeep-wrangler-jl-hardtop__faq-answer {
        padding: 15px !important;
      }
      .page-jeep-wrangler-jl-hardtop__faq-answer p {
        font-size: 0.9rem;
      }

      .page-jeep-wrangler-jl-hardtop__blog-title {
        font-size: 1.2rem;
      }
      .page-jeep-wrangler-jl-hardtop__blog-meta,
      .page-jeep-wrangler-jl-hardtop__blog-excerpt {
        font-size: 0.85rem;
      }
      .page-jeep-wrangler-jl-hardtop__blog-readmore {
        padding: 8px 15px;
        font-size: 0.8rem;
      }

      /* Ensure all images are responsive */
      .page-jeep-wrangler-jl-hardtop img {
        max-width: 100% !important;
        height: auto !important;
      }
    }

    /* Ensure word wrapping for long texts */
    .page-jeep-wrangler-jl-hardtop p,
    .page-jeep-wrangler-jl-hardtop h1,
    .page-jeep-wrangler-jl-hardtop h2,
    .page-jeep-wrangler-jl-hardtop h3,
    .page-jeep-wrangler-jl-hardtop a,
    .page-jeep-wrangler-jl-hardtop li,
    .page-jeep-wrangler-jl-hardtop div {
      word-wrap: break-word;
      overflow-wrap: break-word;
    }