
    /* Base styles for the 599 dollars page */
    .page-599-dollars {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
      background-color: #f9f9f9;
      padding-top: 10px; /* Small padding, relying on body padding for header offset */
    }

    .page-599-dollars__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      box-sizing: border-box;
    }

    .page-599-dollars__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

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

    .page-599-dollars__title {
      font-size: 2.8em;
      color: #e74c3c;
      text-align: center;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .page-599-dollars__subtitle {
      font-size: 2.2em;
      color: #34495e;
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .page-599-dollars__heading {
      font-size: 1.8em;
      color: #34495e;
      margin-bottom: 15px;
      border-bottom: 2px solid #e74c3c;
      padding-bottom: 8px;
    }

    .page-599-dollars__section--dark .page-599-dollars__heading {
      color: #ecf0f1;
      border-bottom-color: #e74c3c;
    }

    .page-599-dollars__paragraph {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: #555;
    }

    .page-599-dollars__section--dark .page-599-dollars__paragraph {
      color: #bdc3c7;
    }

    .page-599-dollars__button {
      display: block;
      width: fit-content;
      margin: 30px auto;
      padding: 15px 30px;
      background-color: #e74c3c;
      color: #fff;
      text-decoration: none;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-599-dollars__button:hover {
      background-color: #c0392b;
      transform: translateY(-2px);
    }

    .page-599-dollars__image-wrapper {
      text-align: center;
      margin: 30px 0;
      overflow: hidden;
      box-sizing: border-box;
      width: 100%;
      max-width: 100%;
      border-radius: 8px;
    }

    .page-599-dollars__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      display: block;
      margin: 0 auto;
    }

    .page-599-dollars__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .page-599-dollars__list-item {
      background-color: #f0f8ff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
      box-sizing: border-box;
      transition: transform 0.2s ease;
      color: #34495e;
    }

    .page-599-dollars__section--dark .page-599-dollars__list-item {
      background-color: #34495e;
      color: #ecf0f1;
    }

    .page-599-dollars__list-item:hover {
      transform: translateY(-5px);
    }

    .page-599-dollars__list-item-title {
      font-size: 1.3em;
      color: #e74c3c;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-599-dollars__section--dark .page-599-dollars__list-item-title {
      color: #f1c40f;
    }

    .page-599-dollars__cta-section {
      text-align: center;
      background-color: #e74c3c;
      color: #fff;
      padding: 50px 20px;
      border-radius: 8px;
      margin-top: 40px;
    }

    .page-599-dollars__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      font-weight: bold;
    }

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

    /* FAQ Section Styles */
    .page-599-dollars__faq-section {
      padding: 40px 20px;
      background-color: #f0f8ff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      margin-top: 20px;
      box-sizing: border-box;
    }

    .page-599-dollars__faq-title {
      font-size: 2.2em;
      color: #34495e;
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
    }

    .page-599-dollars__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 10px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .page-599-dollars__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      cursor: pointer;
      background-color: #f5f5f5;
      color: #34495e;
      font-size: 1.2em;
      font-weight: bold;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-599-dollars__faq-question:hover {
      background-color: #eaeaea;
    }

    .page-599-dollars__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevents h3 from capturing click events */
      color: #34495e; /* Ensure good contrast */
    }

    .page-599-dollars__faq-toggle {
      font-size: 1.5em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle icon from capturing click events */
      color: #e74c3c; /* Ensure good contrast */
    }

    .page-599-dollars__faq-item.active .page-599-dollars__faq-toggle {
      transform: rotate(45deg); /* Changes '+' to 'x' visually, or you can change to '−' */
    }

    .page-599-dollars__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px; /* Initial padding */
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: #555;
      font-size: 1.05em;
    }

    .page-599-dollars__faq-item.active .page-599-dollars__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to contain content */
      padding: 20px 20px !important; /* Padding when active */
      opacity: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-599-dollars__section {
        padding: 25px 15px;
        margin-bottom: 15px;
      }

      .page-599-dollars__title {
        font-size: 2.2em;
      }

      .page-599-dollars__subtitle {
        font-size: 1.8em;
      }

      .page-599-dollars__heading {
        font-size: 1.5em;
      }

      .page-599-dollars__paragraph {
        font-size: 1em;
      }

      .page-599-dollars__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-599-dollars__list {
        grid-template-columns: 1fr; /* Stack items on small screens */
        gap: 15px;
      }

      .page-599-dollars__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-599-dollars__list-item-title {
        font-size: 1.2em;
      }

      .page-599-dollars__cta-title {
        font-size: 2em;
      }

      .page-599-dollars__cta-text {
        font-size: 1em;
      }

      .page-599-dollars__faq-section {
        padding: 25px 15px;
      }

      .page-599-dollars__faq-title {
        font-size: 1.8em;
      }

      .page-599-dollars__faq-question {
        padding: 12px 15px;
        font-size: 1.1em;
      }

      .page-599-dollars__faq-answer {
        padding: 15px 15px !important; /* Adjusted padding for mobile */
      }
    }

    @media (max-width: 480px) {
      .page-599-dollars__title {
        font-size: 1.8em;
      }
      .page-599-dollars__subtitle {
        font-size: 1.5em;
      }
      .page-599-dollars__heading {
        font-size: 1.3em;
      }
      .page-599-dollars__faq-title {
        font-size: 1.5em;
      }
    }
  