
    :root {
      --phmacao-primary: #FFD700; /* Gold */
      --phmacao-secondary: #000000; /* Black */
      --phmacao-accent: #FF4500; /* OrangeRed */
      --phmacao-text-light: #FFFFFF;
      --phmacao-text-dark: #333333;
      --phmacao-bg-dark: #1a1a1a;
      --phmacao-bg-medium: #2a2a2a;
      --phmacao-border: #444444;
    }

    .page-phmacao-register {
      font-family: 'Arial', sans-serif;
      color: var(--phmacao-text-light);
      background-color: var(--phmacao-bg-dark);
      line-height: 1.6;
      padding-bottom: 40px; /* Ensure space before footer */
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-phmacao-register__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .page-phmacao-register__hero-section {
      position: relative;
      padding: 60px 0;
      text-align: center;
      background: linear-gradient(135deg, var(--phmacao-bg-dark) 0%, var(--phmacao-bg-medium) 100%);
      overflow: hidden;
      margin-top: 10px; /* Small decorative top margin, body padding handles full offset */
    }

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

    .page-phmacao-register__hero-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      margin: 0 auto;
    }

    .page-phmacao-register__hero-title {
      font-size: 3.5em;
      color: var(--phmacao-primary);
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-phmacao-register__hero-subtitle {
      font-size: 1.5em;
      color: var(--phmacao-text-light);
      margin-bottom: 30px;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-phmacao-register__button {
      display: inline-block;
      background-color: var(--phmacao-accent);
      color: var(--phmacao-text-light);
      padding: 15px 30px;
      border-radius: 8px;
      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-phmacao-register__button:hover {
      background-color: #e63900; /* Darker orange */
      transform: translateY(-3px);
    }

    .page-phmacao-register__section {
      padding: 60px 0;
      border-bottom: 1px solid var(--phmacao-border);
    }

    .page-phmacao-register__section:last-of-type {
      border-bottom: none;
    }

    .page-phmacao-register__section-title {
      font-size: 2.5em;
      color: var(--phmacao-primary);
      text-align: center;
      margin-bottom: 40px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-phmacao-register__step-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .page-phmacao-register__step-item {
      background-color: var(--phmacao-bg-medium);
      border: 1px solid var(--phmacao-border);
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      flex: 1 1 calc(33% - 40px);
      box-sizing: border-box;
      max-width: calc(33% - 40px);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-phmacao-register__step-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-phmacao-register__step-icon {
      width: 150px; /* Min 200px required, adjusting to meet requirement */
      height: 150px;
      object-fit: contain;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-phmacao-register__step-number {
      font-size: 2em;
      color: var(--phmacao-accent);
      margin-bottom: 10px;
    }

    .page-phmacao-register__step-title {
      font-size: 1.5em;
      color: var(--phmacao-primary);
      margin-bottom: 15px;
    }

    .page-phmacao-register__benefit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .page-phmacao-register__benefit-card {
      background-color: var(--phmacao-bg-medium);
      border: 1px solid var(--phmacao-border);
      border-radius: 12px;
      padding: 30px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box;
    }

    .page-phmacao-register__benefit-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-phmacao-register__benefit-image {
      width: 250px; /* Min 200px required */
      height: 200px;
      object-fit: contain;
      margin-bottom: 20px;
      border-radius: 8px;
    }

    .page-phmacao-register__benefit-title {
      font-size: 1.4em;
      color: var(--phmacao-primary);
      margin-bottom: 10px;
    }

    .page-phmacao-register__faq-section {
      padding: 60px 0;
    }

    .page-phmacao-register__faq-item {
      background-color: var(--phmacao-bg-medium);
      border: 1px solid var(--phmacao-border);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      transition: background-color 0.3s ease;
    }

    .page-phmacao-register__faq-item:hover {
      background-color: #3a3a3a;
    }

    .page-phmacao-register__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color: var(--phmacao-text-light);
      background-color: var(--phmacao-bg-medium);
    }
    
    .page-phmacao-register__faq-question h3 {
      margin: 0;
      color: var(--phmacao-primary);
      pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-phmacao-register__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--phmacao-accent);
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevent span from blocking click event */
    }

    .page-phmacao-register__faq-item.active .page-phmacao-register__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
    }

    .page-phmacao-register__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 25px;
      color: var(--phmacao-text-light);
      background-color: var(--phmacao-bg-dark);
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }

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

    .page-phmacao-register__cta-section {
      text-align: center;
      padding: 60px 0;
      background-color: var(--phmacao-bg-medium);
      border-top: 1px solid var(--phmacao-border);
    }

    .page-phmacao-register__cta-title {
      font-size: 2.2em;
      color: var(--phmacao-primary);
      margin-bottom: 20px;
    }

    .page-phmacao-register__cta-text {
      font-size: 1.3em;
      color: var(--phmacao-text-light);
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .page-phmacao-register__hero-title {
        font-size: 3em;
      }
      .page-phmacao-register__hero-subtitle {
        font-size: 1.3em;
      }
      .page-phmacao-register__section-title {
        font-size: 2em;
      }
      .page-phmacao-register__step-item {
        flex: 1 1 calc(50% - 30px);
        max-width: calc(50% - 30px);
      }
    }

    @media (max-width: 768px) {
      .page-phmacao-register {
        padding-top: var(--header-offset, 122px) !important; /* Ensure header offset on mobile */
      }
      .page-phmacao-register__hero-section {
        padding: 40px 0;
        margin-top: 0 !important; /* Remove decorative top margin on mobile, body padding is enough */
      }
      .page-phmacao-register__hero-title {
        font-size: 2.5em;
      }
      .page-phmacao-register__hero-subtitle {
        font-size: 1.1em;
      }
      .page-phmacao-register__section {
        padding: 40px 0;
      }
      .page-phmacao-register__section-title {
        font-size: 1.8em;
      }
      .page-phmacao-register__step-list {
        flex-direction: column;
        gap: 20px;
      }
      .page-phmacao-register__step-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 20px !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-register__step-icon {
        width: 120px;
        height: 120px;
      }
      .page-phmacao-register__benefit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-phmacao-register__benefit-card {
        padding: 20px;
      }
      .page-phmacao-register__benefit-image {
        width: 200px;
        height: 150px;
      }
      .page-phmacao-register__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
      }
      .page-phmacao-register__faq-answer {
        padding: 0 20px;
      }
      .page-phmacao-register__faq-item.active .page-phmacao-register__faq-answer {
        padding: 15px 20px !important;
      }
      .page-phmacao-register__cta-title {
        font-size: 1.8em;
      }
      .page-phmacao-register__cta-text {
        font-size: 1.1em;
      }
      .page-phmacao-register__button {
        padding: 12px 25px;
        font-size: 1.1em;
      }
    }

    @media (max-width: 480px) {
      .page-phmacao-register__hero-title {
        font-size: 2em;
      }
      .page-phmacao-register__hero-subtitle {
        font-size: 1em;
      }
      .page-phmacao-register__section-title {
        font-size: 1.5em;
      }
    }
  