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

    /* Hero Section */
    .page-599-dollars-to-php__hero-section {
      position: relative;
      background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
      color: #fff;
      text-align: center;
      padding: 10px 20px 80px; /* Added 10px top padding for fixed header offset */
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      box-sizing: border-box;
    }

    .page-599-dollars-to-php__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.3;
      z-index: 1;
    }

    .page-599-dollars-to-php__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-599-dollars-to-php__hero-title {
      font-size: 2.8em;
      margin-bottom: 15px;
      color: #ffcc00; /* Gold-like color for emphasis */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
      font-weight: bold;
    }

    .page-599-dollars-to-php__hero-subtitle {
      font-size: 1.3em;
      margin-bottom: 30px;
      color: #fff;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-599-dollars-to-php__cta-button {
      display: inline-block;
      background-color: #ffcc00;
      color: #1a2a6c;
      padding: 15px 30px;
      border-radius: 8px;
      font-size: 1.1em;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-599-dollars-to-php__cta-button:hover {
      background-color: #e6b800;
      transform: translateY(-3px);
    }

    /* Section common styles */
    .page-599-dollars-to-php__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      box-sizing: border-box;
    }

    .page-599-dollars-to-php__section-title {
      font-size: 2.2em;
      color: #1a2a6c;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }

    .page-599-dollars-to-php__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background-color: #ffcc00;
      border-radius: 2px;
    }

    .page-599-dollars-to-php__section-description {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Value Proposition Section */
    .page-599-dollars-to-php__value-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-599-dollars-to-php__value-item {
      background-color: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: left;
      border-top: 5px solid #ffcc00;
    }

    .page-599-dollars-to-php__value-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    .page-599-dollars-to-php__value-icon {
      width: 80px;
      height: 80px;
      margin-bottom: 20px;
      display: block;
      object-fit: contain;
    }

    .page-599-dollars-to-php__value-title {
      font-size: 1.5em;
      color: #1a2a6c;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .page-599-dollars-to-php__value-text {
      color: #666;
      font-size: 1em;
    }

    /* Games Showcase Section */
    .page-599-dollars-to-php__games-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .page-599-dollars-to-php__game-card {
      background-color: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      text-align: center;
    }

    .page-599-dollars-to-php__game-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .page-599-dollars-to-php__game-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .page-599-dollars-to-php__game-info {
      padding: 20px;
    }

    .page-599-dollars-to-php__game-title {
      font-size: 1.3em;
      color: #1a2a6c;
      margin-bottom: 10px;
      font-weight: bold;
    }

    .page-599-dollars-to-php__game-provider {
      font-size: 0.9em;
      color: #777;
    }

    /* Promo Callout Section */
    .page-599-dollars-to-php__promo-callout {
      background: linear-gradient(45deg, #1a2a6c, #fdbb2d);
      color: #fff;
      padding: 60px 20px;
      border-radius: 15px;
      margin-top: 60px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .page-599-dollars-to-php__promo-title {
      font-size: 2.5em;
      margin-bottom: 15px;
      color: #fff;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    }

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

    /* Payment Methods Section */
    .page-599-dollars-to-php__payment-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 40px;
    }

    .page-599-dollars-to-php__payment-item {
      background-color: #fff;
      border-radius: 10px;
      padding: 20px 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      text-align: center;
      flex: 0 0 auto; /* Prevent stretching */
      min-width: 120px;
      max-width: 180px;
      transition: transform 0.2s ease;
    }

    .page-599-dollars-to-php__payment-item:hover {
      transform: translateY(-3px);
    }

    .page-599-dollars-to-php__payment-logo {
      max-width: 100px;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    .page-599-dollars-to-php__payment-name {
      margin-top: 10px;
      font-size: 0.9em;
      color: #333;
      font-weight: bold;
    }

    /* FAQ Section */
    .page-599-dollars-to-php__faq-section {
      background-color: #fff;
      padding: 60px 20px;
      max-width: 1000px;
      margin: 60px auto 0;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      text-align: left;
      box-sizing: border-box;
    }

    .page-599-dollars-to-php__faq-list {
      list-style: none;
      padding: 0;
      margin-top: 40px;
    }

    .page-599-dollars-to-php__faq-item {
      border-bottom: 1px solid #eee;
      margin-bottom: 15px;
      box-sizing: border-box;
    }

    .page-599-dollars-to-php__faq-item:last-child {
      border-bottom: none;
      margin-bottom: 0;
    }

    .page-599-dollars-to-php__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
      font-size: 1.1em;
      color: #1a2a6c;
      font-weight: bold;
      transition: color 0.3s ease;
    }

    .page-599-dollars-to-php__faq-question:hover {
      color: #ffcc00;
    }

    .page-599-dollars-to-php__faq-question h3 {
      margin: 0;
      flex-grow: 1;
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-599-dollars-to-php__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      margin-left: 15px;
      color: #ffcc00;
      pointer-events: none; /* Prevent toggle icon from blocking click event */
      transition: transform 0.3s ease;
    }

    .page-599-dollars-to-php__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      opacity: 0;
      color: #555;
      font-size: 1em;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      box-sizing: border-box;
    }

    .page-599-dollars-to-php__faq-item.active .page-599-dollars-to-php__faq-answer {
      max-height: 2000px !important; /* Sufficiently large value */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-599-dollars-to-php__faq-item.active .page-599-dollars-to-php__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or similar, or just change text */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .page-599-dollars-to-php__hero-title {
        font-size: 2.5em;
      }
      .page-599-dollars-to-php__section-title {
        font-size: 2em;
      }
      .page-599-dollars-to-php__promo-title {
        font-size: 2.2em;
      }
    }

    @media (max-width: 768px) {
      .page-599-dollars-to-php__hero-section {
        padding-top: 10px; /* Ensure spacing from fixed header */
        min-height: 350px;
      }
      .page-599-dollars-to-php__hero-title {
        font-size: 2em;
      }
      .page-599-dollars-to-php__hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 20px;
      }
      .page-599-dollars-to-php__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }

      .page-599-dollars-to-php__section {
        padding: 40px 15px;
      }
      .page-599-dollars-to-php__section-title {
        font-size: 1.8em;
      }
      .page-599-dollars-to-php__section-description {
        font-size: 1em;
      }

      .page-599-dollars-to-php__value-grid,
      .page-599-dollars-to-php__games-grid {
        grid-template-columns: 1fr;
      }

      .page-599-dollars-to-php__value-item,
      .page-599-dollars-to-php__game-card {
        padding: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      .page-599-dollars-to-php__game-image {
        height: 180px;
      }

      .page-599-dollars-to-php__promo-callout {
        padding: 40px 15px;
        margin-top: 40px;
      }
      .page-599-dollars-to-php__promo-title {
        font-size: 1.8em;
      }
      .page-599-dollars-to-php__promo-text {
        font-size: 1em;
      }

      .page-599-dollars-to-php__payment-grid {
        gap: 15px;
      }
      .page-599-dollars-to-php__payment-item {
        min-width: 100px;
        max-width: 150px;
        padding: 15px 20px;
      }
      .page-599-dollars-to-php__payment-logo {
        max-width: 80px;
      }

      .page-599-dollars-to-php__faq-section {
        padding: 40px 15px;
        margin-top: 40px;
      }
      .page-599-dollars-to-php__faq-question {
        font-size: 1em;
        padding: 12px 0;
      }
      .page-599-dollars-to-php__faq-answer {
        padding: 15px 10px !important; /* Adjusted padding for mobile */
      }

      /* List container responsiveness */
      .page-599-dollars-to-php__faq-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-599-dollars-to-php__faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

      /* Image responsive adjustments */
      .page-599-dollars-to-php__hero-image,
      .page-599-dollars-to-php__value-icon,
      .page-599-dollars-to-php__game-image,
      .page-599-dollars-to-php__payment-logo {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }
    }
  