
    /* Page-specific styles for yy777-net-3 */
    .page-yy777-net-3 {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
      padding-bottom: 40px; /* Add some padding at the bottom before the footer */
    }

    /* Fallback padding for header offset if shared.css doesn't provide it */
    .page-yy777-net-3 {
      padding-top: var(--header-offset, 122px);
    }

    .page-yy777-net-3__section {
      padding: 40px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      margin-bottom: 20px;
    }

    .page-yy777-net-3__section--dark {
      background-color: #2c3e50;
      color: #ecf0f1;
    }

    .page-yy777-net-3__hero-section {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      min-height: 450px;
      padding: 10px 20px 60px 20px; /* Added 10px top padding as per requirement */
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d); /* Gradient background */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .page-yy777-net-3__hero-background-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
    }

    .page-yy777-net-3__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-yy777-net-3__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-weight: bold;
      line-height: 1.2;
    }

    .page-yy777-net-3__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-yy777-net-3__cta-button {
      display: inline-block;
      background-color: #f39c12; /* A vibrant orange */
      color: #fff;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2em;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-yy777-net-3__cta-button:hover {
      background-color: #e67e22; /* Darker orange on hover */
      transform: translateY(-3px);
    }

    .page-yy777-net-3__heading {
      font-size: 2.5em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 30px;
      position: relative;
    }

    .page-yy777-net-3__heading--light {
      color: #ecf0f1;
    }

    .page-yy777-net-3__heading::after {
      content: '';
      display: block;
      width: 60px;
      height: 4px;
      background-color: #f39c12;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .page-yy777-net-3__text-content {
      font-size: 1.1em;
      text-align: justify;
      margin-bottom: 20px;
    }

    .page-yy777-net-3__grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-yy777-net-3__card {
      background-color: #fefefe;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      padding: 25px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    .page-yy777-net-3__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    .page-yy777-net-3__card-image-container {
      width: 100%;
      height: 200px; /* Fixed height for consistency */
      overflow: hidden;
      border-radius: 6px;
      margin-bottom: 20px;
      box-sizing: border-box;
    }

    .page-yy777-net-3__card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-width: 100%; /* Ensure responsiveness */
    }

    .page-yy777-net-3__card-title {
      font-size: 1.5em;
      color: #2c3e50;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-yy777-net-3__card-description {
      font-size: 1em;
      color: #666;
      flex-grow: 1; /* Allows description to take available space */
    }

    .page-yy777-net-3__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
    }

    .page-yy777-net-3__list-item {
      background-color: #ecf0f1;
      border-left: 5px solid #f39c12;
      padding: 15px 20px;
      border-radius: 5px;
      font-size: 1.1em;
      color: #333;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
      flex: 1 1 calc(33% - 30px); /* Three items per row */
      min-width: 280px; /* Minimum width for items */
      box-sizing: border-box; /* Crucial for responsive lists */
    }

    .page-yy777-net-3__promo-banner {
      background-color: #34495e;
      color: #fff;
      padding: 30px;
      text-align: center;
      border-radius: 8px;
      margin-top: 40px;
    }

    .page-yy777-net-3__promo-title {
      font-size: 2em;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-yy777-net-3__promo-text {
      font-size: 1.2em;
      margin-bottom: 25px;
    }

    /* FAQ Section Styles */
    .page-yy777-net-3__faq-section {
      background-color: #fefefe;
    }

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

    .page-yy777-net-3__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      font-size: 1.2em;
      font-weight: bold;
      color: #2c3e50;
      cursor: pointer;
      user-select: none;
      background-color: #f9f9f9;
      transition: background-color 0.3s ease;
    }

    .page-yy777-net-3__faq-question:hover {
      background-color: #f0f0f0;
    }

    .page-yy777-net-3__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #2c3e50;
      pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-yy777-net-3__faq-toggle {
      font-size: 1.8em;
      line-height: 1;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent toggle from blocking click on parent div */
      color: #f39c12;
    }

    .page-yy777-net-3__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;
      background-color: #fff;
    }

    .page-yy777-net-3__faq-item.active .page-yy777-net-3__faq-answer {
      max-height: 2000px !important; /* Sufficiently large to cover content */
      padding: 20px !important; /* Expanded padding */
      opacity: 1;
    }

    .page-yy777-net-3__faq-item.active .page-yy777-net-3__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar effect */
    }

    /* External Link styling */
    .page-yy777-net-3__external-link {
      color: #f39c12;
      text-decoration: none;
      font-weight: bold;
    }

    .page-yy777-net-3__external-link:hover {
      text-decoration: underline;
    }

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

      .page-yy777-net-3__hero-subtitle {
        font-size: 1.2em;
      }

      .page-yy777-net-3__heading {
        font-size: 2em;
      }

      .page-yy777-net-3__section {
        padding: 30px 15px;
      }

      .page-yy777-net-3__grid {
        grid-template-columns: 1fr;
      }

      .page-yy777-net-3__list {
        flex-direction: column;
        gap: 10px;
      }

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

      .page-yy777-net-3__list {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important; /* Adjusted padding for list container */
        margin-left: 0 !important;
        margin-right: 0 !important;
      }

      .page-yy777-net-3__card-image-container {
        height: 150px;
      }

      .page-yy777-net-3__card-image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-yy777-net-3__faq-question {
        font-size: 1.1em;
        padding: 15px;
      }

      .page-yy777-net-3__faq-question h3 {
        font-size: 1.1em;
      }

      .page-yy777-net-3__faq-answer {
        padding: 0 15px;
      }

      .page-yy777-net-3__faq-item.active .page-yy777-net-3__faq-answer {
        padding: 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-yy777-net-3__hero-title {
        font-size: 2em;
      }

      .page-yy777-net-3__hero-subtitle {
        font-size: 1em;
      }

      .page-yy777-net-3__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
      }

      .page-yy777-net-3__heading {
        font-size: 1.8em;
      }
    }
  