
    /* CSS styles for page-phmacao-777-login-register-philippines */
    .page-phmacao-777-login-register-philippines {
      font-family: 'Arial', sans-serif;
      color: #333;
      line-height: 1.6;
      background-color: #f8f8f8;
    }

    /* Fixed navigation offset for the main page wrapper */
    .page-phmacao-777-login-register-philippines {
        padding-top: var(--header-offset, 122px); /* Fallback for shared.css not having body padding-top */
    }

    .page-phmacao-777-login-register-philippines__hero-section {
      position: relative;
      width: 100%;
      height: 60vh; /* Adjust height as needed */
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
      padding: 10px 0 0 0; /* Minimal top padding, assuming body already handles header offset */
      box-sizing: border-box;
    }

    .page-phmacao-777-login-register-philippines__hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* Allowed for background images to improve text readability */
      max-width: 100%;
    }

    .page-phmacao-777-login-register-philippines__hero-content {
      z-index: 1;
      max-width: 900px;
      padding: 20px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 10px;
    }

    .page-phmacao-777-login-register-philippines__hero-title {
      font-size: 3em;
      margin-bottom: 20px;
      color: #FFD700; /* Gold color for emphasis */
    }

    .page-phmacao-777-login-register-philippines__hero-subtitle {
      font-size: 1.2em;
      margin-bottom: 30px;
      color: #fff;
    }

    .page-phmacao-777-login-register-philippines__button-group {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

    .page-phmacao-777-login-register-philippines__button {
      background-color: #FFD700; /* Gold */
      color: #333;
      padding: 15px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.1em;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.2s ease;
      text-decoration: none;
      display: inline-block;
      text-align: center;
      font-weight: bold;
    }

    .page-phmacao-777-login-register-philippines__button:hover {
      background-color: #e6c200;
      transform: translateY(-2px);
    }

    .page-phmacao-777-login-register-philippines__section {
      padding: 60px 20px;
      max-width: 1200px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 10px;
      margin-bottom: 30px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-phmacao-777-login-register-philippines__section-title {
      font-size: 2.5em;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 40px;
      position: relative;
    }

    .page-phmacao-777-login-register-philippines__section-title::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: -10px;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: #FFD700;
      border-radius: 2px;
    }

    .page-phmacao-777-login-register-philippines__content-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      align-items: flex-start;
    }

    .page-phmacao-777-login-register-philippines__text-block {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
    }

    .page-phmacao-777-login-register-philippines__image-block {
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      text-align: center;
    }

    .page-phmacao-777-login-register-philippines__image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      object-fit: cover;
      overflow: hidden; /* Ensure image fits container */
      box-sizing: border-box; /* Ensure padding/border included in width */
    }

    .page-phmacao-777-login-register-philippines__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .page-phmacao-777-login-register-philippines__list-item {
      background-color: #f9f9f9;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      flex: 1 1 calc(33% - 40px); /* 3 items per row, with gap */
      box-sizing: border-box;
      min-width: 280px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-phmacao-777-login-register-philippines__list-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .page-phmacao-777-login-register-philippines__list-item-title {
      color: #FFD700;
      margin-top: 15px;
      font-size: 1.3em;
    }

    .page-phmacao-777-login-register-philippines__list-item-icon {
      width: 100px; /* Display size, actual image from gallery is 200x200 */
      height: 100px;
      object-fit: contain;
      margin-bottom: 10px;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-phmacao-777-login-register-philippines__cta-section {
      background-color: #2c3e50;
      color: #fff;
      text-align: center;
      padding: 80px 20px;
      margin-bottom: 30px;
      border-radius: 10px;
    }

    .page-phmacao-777-login-register-philippines__cta-title {
      font-size: 2.8em;
      margin-bottom: 20px;
      color: #FFD700;
    }

    .page-phmacao-777-login-register-philippines__cta-description {
      font-size: 1.3em;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* FAQ Section Styles */
    .page-phmacao-777-login-register-philippines__faq-section {
      background-color: #f0f0f0;
      padding: 60px 20px;
      max-width: 900px;
      margin: 0 auto 30px auto;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .page-phmacao-777-login-register-philippines__faq-item {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden;
      background-color: #fff;
    }

    .page-phmacao-777-login-register-philippines__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
      background-color: #f5f5f5;
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      color: #333;
    }

    .page-phmacao-777-login-register-philippines__faq-question:hover {
      background-color: #eee;
    }

    .page-phmacao-777-login-register-philippines__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: #2c3e50;
      pointer-events: none; /* Crucial for click handling */
    }

    .page-phmacao-777-login-register-philippines__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: #FFD700;
      transition: transform 0.3s ease;
      pointer-events: none; /* Crucial for click handling */
    }

    .page-phmacao-777-login-register-philippines__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 15px;
      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-phmacao-777-login-register-philippines__faq-item.active .page-phmacao-777-login-register-philippines__faq-answer {
      max-height: 2000px !important; /* Sufficiently large */
      padding: 20px 15px !important;
      opacity: 1;
    }

    .page-phmacao-777-login-register-philippines__faq-item.active .page-phmacao-777-login-register-philippines__faq-toggle {
      transform: rotate(45deg); /* Change + to X (or - if desired) */
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
      .page-phmacao-777-login-register-philippines__hero-section {
        height: 50vh;
      }

      .page-phmacao-777-login-register-philippines__hero-title {
        font-size: 2em;
      }

      .page-phmacao-777-login-register-philippines__hero-subtitle {
        font-size: 1em;
      }

      .page-phmacao-777-login-register-philippines__button-group {
        flex-direction: column;
        gap: 10px;
      }

      .page-phmacao-777-login-register-philippines__button {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        padding: 12px 20px;
        font-size: 1em;
      }

      .page-phmacao-777-login-register-philippines__section {
        padding: 40px 15px;
        margin-left: 15px;
        margin-right: 15px;
      }

      .page-phmacao-777-login-register-philippines__section-title {
        font-size: 2em;
      }

      .page-phmacao-777-login-register-philippines__content-wrapper {
        flex-direction: column;
      }

      .page-phmacao-777-login-register-philippines__text-block,
      .page-phmacao-777-login-register-philippines__image-block {
        max-width: 100%;
        min-width: unset;
        width: 100%;
        box-sizing: border-box;
      }

      .page-phmacao-777-login-register-philippines__image {
        max-width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
      }

      .page-phmacao-777-login-register-philippines__list {
        flex-direction: column; /* Stack items */
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
      }

      .page-phmacao-777-login-register-philippines__list-item {
        flex: 1 1 100%; /* Full width for each 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-phmacao-777-login-register-philippines__cta-title {
        font-size: 2em;
      }

      .page-phmacao-777-login-register-philippines__cta-description {
        font-size: 1em;
      }

      .page-phmacao-777-login-register-philippines__faq-section {
        padding: 30px 15px;
        margin-left: 15px;
        margin-right: 15px;
      }

      .page-phmacao-777-login-register-philippines__faq-question {
        padding: 12px 15px;
      }

      .page-phmacao-777-login-register-philippines__faq-question h3 {
        font-size: 1.1em;
      }

      .page-phmacao-777-login-register-philippines__faq-answer {
        padding: 15px 15px !important;
      }
    }
    @media (max-width: 480px) {
      .page-phmacao-777-login-register-philippines__hero-section {
        height: 40vh;
      }
      .page-phmacao-777-login-register-philippines__hero-title {
        font-size: 1.8em;
      }
    }
  