
    /* Base styles for the page */
    .page-meyd-599-2 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    .page-meyd-599-2__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    /* Hero Section */
    .page-meyd-599-2__hero-section {
      position: relative;
      padding: 10px 0 60px 0; /* Small top padding, relying on body padding for header offset */
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: #ffffff;
      text-align: center;
      overflow: hidden;
      margin-bottom: 40px;
    }

    .page-meyd-599-2__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .page-meyd-599-2__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
      padding: 40px 20px;
    }

    .page-meyd-599-2__hero-title {
      font-size: 3.5em;
      margin-bottom: 15px;
      font-weight: bold;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .page-meyd-599-2__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .page-meyd-599-2__cta-button {
      display: inline-block;
      background-color: #ffc107;
      color: #333;
      padding: 15px 30px;
      border-radius: 50px;
      font-size: 1.2em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-meyd-599-2__cta-button:hover {
      background-color: #e0a800;
      transform: translateY(-3px);
    }

    /* Section Styling */
    .page-meyd-599-2__section {
      background-color: #ffffff;
      padding: 60px 0;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-meyd-599-2__section--dark {
      background-color: #343a40;
      color: #ffffff;
    }

    .page-meyd-599-2__section-title {
      font-size: 2.5em;
      color: #007bff;
      text-align: center;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .page-meyd-599-2__section--dark .page-meyd-599-2__section-title {
      color: #ffc107;
    }

    .page-meyd-599-2__text-content {
      text-align: center;
      margin-bottom: 30px;
      font-size: 1.1em;
      max-width: 900px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Feature Grid */
    .page-meyd-599-2__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 0 20px;
    }

    .page-meyd-599-2__feature-item {
      background-color: #f0f8ff;
      border-radius: 8px;
      padding: 30px;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-meyd-599-2__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }

    .page-meyd-599-2__feature-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      object-fit: contain;
    }

    .page-meyd-599-2__feature-title {
      font-size: 1.5em;
      color: #007bff;
      margin-bottom: 15px;
    }

    .page-meyd-599-2__feature-description {
      font-size: 1em;
      color: #555;
    }

    /* Game Providers / Payment Methods */
    .page-meyd-599-2__logo-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      padding: 0 20px;
      justify-items: center;
      align-items: center;
    }

    .page-meyd-599-2__logo-item {
      background-color: #ffffff;
      border-radius: 8px;
      padding: 15px;
      text-align: center;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.08);
      height: 100px; /* Fixed height for consistency */
      display: flex;
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .page-meyd-599-2__logo-image {
      max-width: 100%;
      max-height: 70px;
      object-fit: contain;
    }

    /* Call to Action Section */
    .page-meyd-599-2__cta-section {
      background: linear-gradient(90deg, #0056b3, #007bff);
      color: #ffffff;
      text-align: center;
      padding: 80px 20px;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .page-meyd-599-2__cta-section-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      font-weight: bold;
      color: #ffc107;
    }

    .page-meyd-599-2__cta-section-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section */
    .page-meyd-599-2__faq-section {
      background-color: #f0f8ff;
    }

    .page-meyd-599-2__faq-item {
      background-color: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    }

    .page-meyd-599-2__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      background-color: #f7f7f7;
      border-bottom: 1px solid #e0e0e0;
      user-select: none;
      transition: background-color 0.3s ease;
    }

    .page-meyd-599-2__faq-question:hover {
      background-color: #e9ecef;
    }

    .page-meyd-599-2__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #007bff;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-meyd-599-2__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #007bff;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-meyd-599-2__faq-item.active .page-meyd-599-2__faq-toggle {
      transform: rotate(45deg); /* Rotates the '+' to 'x' visually, or you can change content to '−' */
    }

    .page-meyd-599-2__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;
      background-color: #ffffff;
      color: #555;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-meyd-599-2__hero-title {
        font-size: 2.5em;
      }

      .page-meyd-599-2__hero-subtitle {
        font-size: 1.2em;
      }

      .page-meyd-599-2__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

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

      .page-meyd-599-2__feature-grid,
      .page-meyd-599-2__logo-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

      .page-meyd-599-2__feature-item,
      .page-meyd-599-2__logo-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-meyd-599-2__cta-section {
        padding: 60px 20px;
      }

      .page-meyd-599-2__cta-section-title {
        font-size: 2em;
      }

      .page-meyd-599-2__cta-section-description {
        font-size: 1em;
      }

      .page-meyd-599-2__faq-question {
        padding: 15px 20px;
      }

      .page-meyd-599-2__faq-question h3 {
        font-size: 1.1em;
      }

      .page-meyd-599-2__faq-answer {
        padding: 0 20px;
      }

      .page-meyd-599-2__faq-item.active .page-meyd-599-2__faq-answer {
        padding: 15px 20px !important;
      }
      
      /* Ensure images are responsive */
      .page-meyd-599-2 img {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
      .page-meyd-599-2__logo-item img {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-meyd-599-2__hero-image {
        max-width: 100% !important;
        height: 100% !important;
      }
      .page-meyd-599-2__feature-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      /* Word break for lists and text */
      .page-meyd-599-2__feature-description,
      .page-meyd-599-2__text-content,
      .page-meyd-599-2__faq-answer p {
          word-wrap: break-word !important;
          overflow-wrap: break-word !important;
          word-break: break-word !important;
      }
    }
    
    @media (max-width: 480px) {
      .page-meyd-599-2__hero-title {
        font-size: 2em;
      }
      .page-meyd-599-2__hero-subtitle {
        font-size: 1em;
      }
      .page-meyd-599-2__section-title {
        font-size: 1.8em;
      }
      .page-meyd-599-2__cta-section-title {
        font-size: 1.8em;
      }
    }
  