
    /* Base styles for the page */
    .page-599-gto {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: #343a40; /* Dark grey for text */
      line-height: 1.6;
      background-color: #f8f9fa; /* Light grey background */
      padding-bottom: 40px; /* Add some bottom padding */
      /* Assume body padding-top is handled by shared.css for header offset */
    }

    .page-599-gto__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      box-sizing: border-box;
    }

    .page-599-gto__section {
      padding: 40px 0;
      margin-bottom: 20px;
    }

    .page-599-gto__section--light {
      background-color: #ffffff;
    }

    .page-599-gto__section--dark {
      background-color: #e9ecef;
    }

    .page-599-gto__heading {
      font-size: 2.5em;
      color: #007bff; /* Primary blue */
      text-align: center;
      margin-bottom: 30px;
      font-weight: 700;
    }

    .page-599-gto__subheading {
      font-size: 1.8em;
      color: #343a40;
      text-align: center;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .page-599-gto__paragraph {
      font-size: 1.1em;
      margin-bottom: 15px;
      text-align: justify;
    }

    /* Hero Section */
    .page-599-gto__hero-section {
      position: relative;
      color: #ffffff;
      text-align: center;
      padding: 10px 0 80px 0; /* Adjusted padding-top, relying on body for header offset */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 500px; /* Minimum height for hero */
      background-color: #0056b3; /* Fallback background */
    }

    .page-599-gto__hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      filter: brightness(0.6); /* Darken background image for text readability */
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    .page-599-gto__hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      padding: 20px;
      background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
      border-radius: 10px;
    }

    .page-599-gto__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: 800;
      line-height: 1.2;
    }

    .page-599-gto__hero-description {
      font-size: 1.3em;
      margin-bottom: 30px;
      font-weight: 300;
    }

    .page-599-gto__button {
      display: inline-block;
      padding: 15px 30px;
      background-color: #28a745; /* Green button */
      color: #ffffff;
      text-decoration: none;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: 600;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-599-gto__button:hover {
      background-color: #218838;
    }

    /* Features Section */
    .page-599-gto__features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-599-gto__feature-card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-sizing: border-box; /* Required for list items */
    }

    .page-599-gto__feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .page-599-gto__feature-icon {
      width: 250px; /* Min size 200x200px */
      height: 250px;
      margin-bottom: 20px;
      object-fit: contain;
      border-radius: 8px;
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    .page-599-gto__feature-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-599-gto__feature-description {
      font-size: 1em;
      color: #555;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

    /* Promotions Section */
    .page-599-gto__promotions-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-599-gto__promo-card {
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Required for list items */
    }

    .page-599-gto__promo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

    .page-599-gto__promo-image {
      width: 100%;
      height: 250px; /* Ensure minimum size */
      object-fit: cover;
      max-width: 100% !important;
      height: auto !important;
      box-sizing: border-box !important;
    }

    .page-599-gto__promo-content {
      padding: 25px;
    }

    .page-599-gto__promo-title {
      font-size: 1.6em;
      color: #007bff;
      margin-bottom: 10px;
    }

    .page-599-gto__promo-description {
      font-size: 1em;
      color: #555;
      margin-bottom: 20px;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

    /* Call to Action Section */
    .page-599-gto__cta-section {
      text-align: center;
      background-color: #007bff;
      color: #ffffff;
      padding: 60px 20px;
      border-radius: 10px;
      margin-top: 40px;
    }

    .page-599-gto__cta-title {
      font-size: 2.2em;
      margin-bottom: 15px;
      font-weight: 700;
    }

    .page-599-gto__cta-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-599-gto__cta-button {
      background-color: #ffc107; /* Yellow button */
      color: #343a40;
    }

    .page-599-gto__cta-button:hover {
      background-color: #e0a800;
    }

    /* FAQ Section */
    .page-599-gto__faq-section {
      background-color: #ffffff;
      padding: 60px 0;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

    .page-599-gto__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 30px;
      width: 100%; /* For mobile list container */
      max-width: 100%; /* For mobile list container */
      box-sizing: border-box; /* For mobile list container */
      margin-left: 0; /* For mobile list container */
      margin-right: 0; /* For mobile list container */
    }

    .page-599-gto__faq-item {
      background-color: #f8f9fa;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Required for list items */
    }

    .page-599-gto__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #e9ecef;
      color: #343a40;
      font-size: 1.2em;
      font-weight: 600;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-599-gto__faq-question:hover {
      background-color: #dee2e6;
    }

    .page-599-gto__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #343a40;
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-599-gto__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle icon from blocking click */
      color: #007bff;
    }

    .page-599-gto__faq-item.active .page-599-gto__faq-toggle {
      transform: rotate(45deg);
      color: #dc3545; /* Red for active */
    }

    .page-599-gto__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      background-color: #f8f9fa;
      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;
      font-size: 1.05em;
    }

    .page-599-gto__faq-item.active .page-599-gto__faq-answer {
      max-height: 2000px !important; /* Use !important as required */
      padding: 20px 25px !important; /* Use !important as required */
      opacity: 1;
    }

    .page-599-gto__faq-answer p {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      word-break: break-word !important;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .page-599-gto__hero-title {
        font-size: 3em;
      }
      .page-599-gto__hero-description {
        font-size: 1.2em;
      }
      .page-599-gto__heading {
        font-size: 2em;
      }
      .page-599-gto__subheading {
        font-size: 1.5em;
      }
    }

    @media (max-width: 768px) {
      .page-599-gto__container {
        padding: 0 10px;
      }
      .page-599-gto__hero-section {
        min-height: 400px;
        padding-bottom: 60px;
      }
      .page-599-gto__hero-title {
        font-size: 2.5em;
      }
      .page-599-gto__hero-description {
        font-size: 1.1em;
      }
      .page-599-gto__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
      .page-599-gto__section {
        padding: 30px 0;
      }
      .page-599-gto__heading {
        font-size: 1.8em;
      }
      .page-599-gto__subheading {
        font-size: 1.3em;
      }
      .page-599-gto__paragraph {
        font-size: 1em;
      }

      /* List item responsive requirements */
      .page-599-gto__features-grid,
      .page-599-gto__promotions-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        gap: 20px;
      }

      .page-599-gto__feature-card,
      .page-599-gto__promo-card,
      .page-599-gto__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px; /* Adjust card padding for smaller screens */
      }
      .page-599-gto__promo-image {
        height: 200px !important; /* Adjust image height for smaller screens */
      }
      .page-599-gto__promo-content {
        padding: 20px;
      }
      .page-599-gto__promo-title {
        font-size: 1.4em;
      }
      .page-599-gto__feature-icon {
        width: 200px !important; /* Smaller on mobile */
        height: 200px !important;
      }

      /* FAQ adjustments */
      .page-599-gto__faq-question,
      .page-599-gto__faq-answer {
        padding-left: 15px !important;
        padding-right: 15px !important;
      }
      .page-599-gto__faq-question h3 {
        font-size: 1.1em;
      }
      .page-599-gto__faq-answer {
        font-size: 0.95em;
      }
      .page-599-gto__faq-item {
        margin-bottom: 10px;
      }
    }

    @media (max-width: 480px) {
      .page-599-gto__hero-title {
        font-size: 2em;
      }
      .page-599-gto__hero-description {
        font-size: 1em;
      }
      .page-599-gto__button {
        padding: 10px 20px;
        font-size: 1em;
      }
      .page-599-gto__cta-title {
        font-size: 1.8em;
      }
      .page-599-gto__cta-description {
        font-size: 1em;
      }
    }
  