
    :root {
      --page-t-i-thabet-primary-color: #f3b431; /* Golden yellow */
      --page-t-i-thabet-secondary-color: #2c3e50; /* Dark blue/grey */
      --page-t-i-thabet-text-color: #ecf0f1; /* Light grey */
      --page-t-i-thabet-background-dark: #1a1a1a; /* Very dark grey */
      --page-t-i-thabet-background-light: #2c2c2c; /* Slightly lighter dark grey */
      --page-t-i-thabet-border-color: #3a3a3a;
      --page-t-i-thabet-success-color: #27ae60; /* Green */
      --page-t-i-thabet-transition-speed: 0.3s;
    }

    .page-t-i-thabet {
      font-family: 'Arial', sans-serif;
      color: var(--page-t-i-thabet-text-color);
      background-color: var(--page-t-i-thabet-background-dark);
      line-height: 1.6;
      padding-bottom: 50px; /* Ensure space above footer */
    }

    .page-t-i-thabet__hero-section {
      padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
      background-color: var(--page-t-i-thabet-background-light);
      text-align: center;
      padding: 60px 20px;
      position: relative;
      overflow: hidden;
      background-image: url('[GALLERY:hero:1920x1080:thabet88,app,download,mobile]');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    
    .page-t-i-thabet__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
      z-index: 1;
    }

    .page-t-i-thabet__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-t-i-thabet__hero-title {
      color: var(--page-t-i-thabet-primary-color);
      font-size: 3.2em;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      line-height: 1.2;
    }

    .page-t-i-thabet__hero-description {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: var(--page-t-i-thabet-text-color);
    }

    .page-t-i-thabet__button {
      display: inline-block;
      background-color: var(--page-t-i-thabet-primary-color);
      color: var(--page-t-i-thabet-background-dark);
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color var(--page-t-i-thabet-transition-speed) ease;
      border: none;
      cursor: pointer;
      outline: none;
    }

    .page-t-i-thabet__button:hover {
      background-color: #e0a82b; /* Slightly darker gold */
    }

    .page-t-i-thabet__section {
      padding: 50px 20px;
      margin: 0 auto;
      max-width: 1200px;
      background-color: var(--page-t-i-thabet-background-dark);
    }

    .page-t-i-thabet__section:nth-of-type(even) {
      background-color: var(--page-t-i-thabet-background-light);
    }

    .page-t-i-thabet__section-title {
      color: var(--page-t-i-thabet-primary-color);
      font-size: 2.5em;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-t-i-thabet__section-title::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: var(--page-t-i-thabet-primary-color);
      margin: 15px auto 0;
      border-radius: 2px;
    }

    .page-t-i-thabet__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-t-i-thabet__card {
      background-color: var(--page-t-i-thabet-background-light);
      border: 1px solid var(--page-t-i-thabet-border-color);
      border-radius: 10px;
      padding: 30px;
      text-align: center;
      transition: transform var(--page-t-i-thabet-transition-speed) ease, box-shadow var(--page-t-i-thabet-transition-speed) ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-t-i-thabet__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .page-t-i-thabet__card-icon {
      width: 200px; /* Minimum 200x200px requirement */
      height: 200px;
      margin-bottom: 20px;
      object-fit: contain;
      max-width: 100%;
      height: auto;
    }

    .page-t-i-thabet__card-title {
      color: var(--page-t-i-thabet-primary-color);
      font-size: 1.5em;
      margin-bottom: 15px;
    }

    .page-t-i-thabet__card-description {
      font-size: 0.95em;
      color: var(--page-t-i-thabet-text-color);
    }

    .page-t-i-thabet__step-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .page-t-i-thabet__step-item {
      display: flex;
      align-items: flex-start;
      background-color: var(--page-t-i-thabet-background-light);
      border-radius: 10px;
      padding: 25px;
      border: 1px solid var(--page-t-i-thabet-border-color);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      box-sizing: border-box; /* Required for list items */
    }

    .page-t-i-thabet__step-number {
      background-color: var(--page-t-i-thabet-primary-color);
      color: var(--page-t-i-thabet-background-dark);
      width: 40px;
      height: 40px;
      min-width: 40px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: bold;
      font-size: 1.4em;
      margin-right: 20px;
    }

    .page-t-i-thabet__step-content {
      flex-grow: 1;
    }

    .page-t-i-thabet__step-title {
      color: var(--page-t-i-thabet-primary-color);
      font-size: 1.6em;
      margin-top: 0;
      margin-bottom: 10px;
    }

    .page-t-i-thabet__step-description {
      font-size: 1em;
      color: var(--page-t-i-thabet-text-color);
      word-wrap: break-word !important; /* Required for list items */
      overflow-wrap: break-word !important; /* Required for list items */
    }
    
    .page-t-i-thabet__image-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-top: 20px;
    }

    .page-t-i-thabet__step-image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      border: 1px solid var(--page-t-i-thabet-border-color);
      width: 100%; /* Ensure image takes full width of its container */
      box-sizing: border-box; /* Required for image containers */
    }
    
    .page-t-i-thabet__download-buttons {
      text-align: center;
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .page-t-i-thabet__download-button {
      background-color: var(--page-t-i-thabet-success-color);
      color: white;
      padding: 15px 30px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color var(--page-t-i-thabet-transition-speed) ease;
      display: flex;
      align-items: center;
      gap: 10px;
      border: none;
      cursor: pointer;
      outline: none;
    }

    .page-t-i-thabet__download-button:hover {
      background-color: #219d54; /* Slightly darker green */
    }

    .page-t-i-thabet__download-button-icon {
      width: 60px; /* Visual size, placeholder is 200x200 */
      height: 60px; /* Visual size, placeholder is 200x200 */
      object-fit: contain;
    }

    .page-t-i-thabet__note-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-t-i-thabet__note-item {
      background-color: var(--page-t-i-thabet-background-light);
      border-left: 5px solid var(--page-t-i-thabet-primary-color);
      padding: 15px 20px;
      margin-bottom: 15px;
      border-radius: 5px;
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word !important; /* Required for list items */
      overflow-wrap: break-word !important; /* Required for list items */
    }

    .page-t-i-thabet__note-item strong {
      color: var(--page-t-i-thabet-primary-color);
    }

    /* FAQ Section */
    .page-t-i-thabet__faq-section {
      padding: 50px 20px;
      max-width: 900px;
      margin: 0 auto;
      background-color: var(--page-t-i-thabet-background-dark);
    }

    .page-t-i-thabet__faq-item {
      background-color: var(--page-t-i-thabet-background-light);
      border: 1px solid var(--page-t-i-thabet-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box; /* Required for list items */
    }

    .page-t-i-thabet__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: var(--page-t-i-thabet-secondary-color);
      color: var(--page-t-i-thabet-text-color);
      font-weight: bold;
      font-size: 1.1em;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-t-i-thabet__faq-question:hover {
      background-color: #34495e;
    }
    
    .page-t-i-thabet__faq-question h3 {
        margin: 0;
        color: inherit;
        font-size: 1.1em; /* Ensure font size consistency */
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-t-i-thabet__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      color: var(--page-t-i-thabet-primary-color);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-t-i-thabet__faq-item.active .page-t-i-thabet__faq-toggle {
      transform: rotate(45deg); /* Changes + to x or a dash */
    }

    .page-t-i-thabet__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      color: var(--page-t-i-thabet-text-color);
      background-color: var(--page-t-i-thabet-background-light);
      word-wrap: break-word !important; /* Required for list items */
      overflow-wrap: break-word !important; /* Required for list items */
    }

    .page-t-i-thabet__faq-item.active .page-t-i-thabet__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 25px !important;
      opacity: 1;
    }
    
    .page-t-i-thabet__faq-answer p {
        margin-top: 0;
        margin-bottom: 10px;
    }
    .page-t-i-thabet__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-t-i-thabet__hero-title {
        font-size: 2.2em;
      }

      .page-t-i-thabet__hero-description {
        font-size: 1em;
      }

      .page-t-i-thabet__section {
        padding: 30px 15px;
      }

      .page-t-i-thabet__section-title {
        font-size: 2em;
        margin-bottom: 30px;
      }

      .page-t-i-thabet__grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .page-t-i-thabet__card {
        padding: 20px;
      }

      .page-t-i-thabet__card-title {
        font-size: 1.3em;
      }

      .page-t-i-thabet__step-item {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        width: 100% !important; /* Required for list items */
        max-width: 100% !important; /* Required for list items */
        box-sizing: border-box !important; /* Required for list items */
        margin-left: 0 !important; /* Required for list items */
        margin-right: 0 !important; /* Required for list items */
      }

      .page-t-i-thabet__step-number {
        margin-right: 0;
        margin-bottom: 15px;
      }
      
      .page-t-i-thabet__step-list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-t-i-thabet__step-content {
        text-align: center;
      }

      .page-t-i-thabet__step-title {
        font-size: 1.4em;
      }

      .page-t-i-thabet__download-buttons {
        flex-direction: column;
        gap: 15px;
      }

      .page-t-i-thabet__download-button {
        width: 100%;
        max-width: 300px; /* Constrain button width on small screens */
        margin: 0 auto;
      }

      .page-t-i-thabet__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }
      
      .page-t-i-thabet__faq-question h3 {
        font-size: 1em;
      }

      .page-t-i-thabet__faq-answer {
        padding: 15px 20px;
      }
      
      .page-t-i-thabet__image-container {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-t-i-thabet__step-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 480px) {
      .page-t-i-thabet__hero-title {
        font-size: 1.8em;
      }
      .page-t-i-thabet__section-title {
        font-size: 1.8em;
      }
      .page-t-i-thabet__download-button {
        font-size: 1em;
        padding: 12px 25px;
      }
    }
  