
    /* Base styles for the specific page */
    .page-plus777-vip-download {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f9f9f9;
      padding-bottom: 40px;
    }

    /* Section styling */
    .page-plus777-vip-download__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
    }

    .page-plus777-vip-download__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-plus777-vip-download__section--dark h2,
    .page-plus777-vip-download__section--dark h3 {
      color: #f39c12;
    }

    .page-plus777-vip-download__section--dark .page-plus777-vip-download__button {
      background-color: #f39c12;
      color: #2c3e50;
    }

    /* Hero Section */
    .page-plus777-vip-download__hero-section {
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      padding-top: 10px; /* Small decorative top padding, assuming body handles header offset */
      border-radius: 0 0 15px 15px;
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
    }

    .page-plus777-vip-download__hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('[GALLERY:pattern:1920x1080:abstract,geometric,pattern]') no-repeat center center/cover;
      opacity: 0.1;
      z-index: 0;
    }

    .page-plus777-vip-download__hero-content {
      position: relative;
      z-index: 1;
    }

    .page-plus777-vip-download__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-plus777-vip-download__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      font-weight: 300;
    }

    .page-plus777-vip-download__button {
      display: inline-block;
      background-color: #e74c3c;
      color: #fff;
      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;
    }

    .page-plus777-vip-download__button:hover {
      background-color: #c0392b;
      transform: translateY(-3px);
    }

    /* Content Layout */
    .page-plus777-vip-download__container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 30px;
    }

    .page-plus777-vip-download__content-block {
      flex: 1;
      min-width: 300px;
    }

    .page-plus777-vip-download__image-wrapper {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
      margin-bottom: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }

    .page-plus777-vip-download__image {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    /* Features/Steps List */
    .page-plus777-vip-download__feature-list,
    .page-plus777-vip-download__step-list,
    .page-plus777-vip-download__payment-list,
    .page-plus777-vip-download__provider-list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }

    .page-plus777-vip-download__feature-item,
    .page-plus777-vip-download__step-item,
    .page-plus777-vip-download__payment-item,
    .page-plus777-vip-download__provider-item {
      background-color: #ecf0f1;
      padding: 15px 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      flex: 1 1 calc(33% - 20px); /* Three items per row */
      box-sizing: border-box;
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 280px;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }

    .page-plus777-vip-download__step-item {
      background-color: #f39c12;
      color: #fff;
    }

    .page-plus777-vip-download__step-number {
      font-size: 1.5em;
      font-weight: bold;
      margin-right: 10px;
      background-color: rgba(0, 0, 0, 0.2);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
    }

    .page-plus777-vip-download__payment-item,
    .page-plus777-vip-download__provider-item {
      flex: 1 1 calc(25% - 15px); /* Four items per row */
      text-align: center;
      background-color: #ecf0f1;
      padding: 10px 15px;
      display: block; /* To allow text-align center for content */
    }

    .page-plus777-vip-download__payment-item img,
    .page-plus777-vip-download__provider-item img {
      max-width: 100px;
      height: auto;
      margin-bottom: 5px;
      border-radius: 4px;
      max-height: 50px; /* Limit height for payment/provider logos */
      object-fit: contain;
    }

    /* Call to Action */
    .page-plus777-vip-download__cta-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #34495e;
      color: #fff;
      border-radius: 8px;
      margin-top: 30px;
    }

    .page-plus777-vip-download__cta-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: #f39c12;
    }

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

    /* FAQ Section */
    .page-plus777-vip-download__faq-section {
      background-color: #f0f4f7;
      border-radius: 8px;
      padding: 40px 20px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      margin-top: 30px;
    }

    .page-plus777-vip-download__faq-title {
      text-align: center;
      margin-bottom: 30px;
      color: #2c3e50;
    }

    .page-plus777-vip-download__faq-item {
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    }

    .page-plus777-vip-download__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 25px;
      cursor: pointer;
      background-color: #eaf0f4;
      font-size: 1.1em;
      font-weight: bold;
      color: #34495e;
      transition: background-color 0.3s ease;
      user-select: none;
    }

    .page-plus777-vip-download__faq-question:hover {
      background-color: #e0e6eb;
    }

    .page-plus777-vip-download__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click on parent */
      color: #34495e;
    }

    .page-plus777-vip-download__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent */
      color: #f39c12;
    }

    .page-plus777-vip-download__faq-item.active .page-plus777-vip-download__faq-toggle {
      transform: rotate(45deg); /* Change + to X or - */
    }

    .page-plus777-vip-download__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: #555;
    }

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

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

      .page-plus777-vip-download__hero-subtitle {
        font-size: 1.2em;
      }

      .page-plus777-vip-download__section {
        padding: 30px 15px;
        margin-bottom: 20px;
      }

      .page-plus777-vip-download__container {
        flex-direction: column;
      }

      .page-plus777-vip-download__feature-item,
      .page-plus777-vip-download__step-item,
      .page-plus777-vip-download__payment-item,
      .page-plus777-vip-download__provider-item {
        flex: 1 1 100% !important; /* Full width on mobile */
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px !important; /* Adjust padding for mobile */
      }

      .page-plus777-vip-download__feature-list,
      .page-plus777-vip-download__step-list,
      .page-plus777-vip-download__payment-list,
      .page-plus777-vip-download__provider-list {
        padding: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-plus777-vip-download__cta-title {
        font-size: 1.8em;
      }

      .page-plus777-vip-download__cta-description {
        font-size: 1em;
      }

      .page-plus777-vip-download__faq-question {
        padding: 15px 20px;
        font-size: 1em;
      }

      .page-plus777-vip-download__faq-answer {
        padding: 0 20px;
      }

      .page-plus777-vip-download__faq-item.active .page-plus777-vip-download__faq-answer {
        padding: 15px 20px !important;
      }
    }

    @media (max-width: 480px) {
      .page-plus777-vip-download__hero-section {
        padding: 60px 15px;
      }

      .page-plus777-vip-download__hero-title {
        font-size: 1.8em;
      }

      .page-plus777-vip-download__hero-subtitle {
        font-size: 1em;
      }

      .page-plus777-vip-download__button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  