
    :root {
      --page-599-to-php-primary-color: #007bff; /* Blue */
      --page-599-to-php-secondary-color: #6c757d; /* Grey */
      --page-599-to-php-accent-color: #28a745; /* Green */
      --page-599-to-php-background-light: #f8f9fa; /* Light Grey */
      --page-599-to-php-text-dark: #212529; /* Dark Grey */
      --page-599-to-php-text-light: #ffffff; /* White */
      --page-599-to-php-border-color: #dee2e6; /* Lighter Grey */
    }

    .page-599-to-php {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--page-599-to-php-text-dark);
      background-color: var(--page-599-to-php-background-light);
      padding-top: 10px; /* Small decorative padding, assuming body handles shared-header offset */
    }

    .page-599-to-php__hero-section {
      position: relative;
      background-color: var(--page-599-to-php-primary-color);
      color: var(--page-599-to-php-text-light);
      padding: 60px 20px;
      text-align: center;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 400px;
      margin-bottom: 40px;
    }

    .page-599-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-to-php__hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .page-599-to-php__hero-title {
      font-size: 3.2em;
      margin-bottom: 15px;
      color: var(--page-599-to-php-text-light);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-599-to-php__hero-subtitle {
      font-size: 1.4em;
      margin-bottom: 30px;
      color: var(--page-599-to-php-text-light);
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }

    .page-599-to-php__cta-button {
      display: inline-block;
      background-color: var(--page-599-to-php-accent-color);
      color: var(--page-599-to-php-text-light);
      padding: 15px 30px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      font-size: 1.1em;
      border: none;
      cursor: pointer;
    }

    .page-599-to-php__cta-button:hover {
      background-color: #218838; /* Darker green */
    }

    .page-599-to-php__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .page-599-to-php__section {
      background-color: var(--page-599-to-php-text-light);
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      margin-bottom: 40px;
    }

    .page-599-to-php__section-title {
      font-size: 2.5em;
      color: var(--page-599-to-php-primary-color);
      margin-bottom: 25px;
      text-align: center;
      font-weight: 700;
    }

    .page-599-to-php__text-content p {
      margin-bottom: 15px;
      font-size: 1.1em;
      line-height: 1.7;
    }

    .page-599-to-php__text-content strong {
      color: var(--page-599-to-php-primary-color);
    }

    .page-599-to-php__image-wrapper {
      margin: 30px 0;
      text-align: center;
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      box-sizing: border-box;
    }

    .page-599-to-php__image {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .page-599-to-php__feature-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }

    .page-599-to-php__feature-item {
      background-color: var(--page-599-to-php-background-light);
      padding: 25px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-599-to-php__feature-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    .page-599-to-php__feature-icon {
      width: 100%;
      max-width: 100%;
      height: auto;
      margin-bottom: 15px;
      border-radius: 5px;
      object-fit: cover;
    }

    .page-599-to-php__feature-heading {
      font-size: 1.5em;
      color: var(--page-599-to-php-primary-color);
      margin-bottom: 10px;
    }

    .page-599-to-php__feature-text {
      font-size: 1em;
      color: var(--page-599-to-php-secondary-color);
    }

    .page-599-to-php__faq-section {
      background-color: var(--page-599-to-php-text-light);
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      margin-bottom: 40px;
    }

    .page-599-to-php__faq-title {
      font-size: 2.5em;
      color: var(--page-599-to-php-primary-color);
      margin-bottom: 25px;
      text-align: center;
      font-weight: 700;
    }

    .page-599-to-php__faq-item {
      border: 1px solid var(--page-599-to-php-border-color);
      border-radius: 8px;
      margin-bottom: 15px;
      overflow: hidden;
      box-sizing: border-box; /* Crucial for responsiveness */
    }

    .page-599-to-php__faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 25px;
      background-color: var(--page-599-to-php-background-light);
      cursor: pointer;
      user-select: none;
      transition: background-color 0.3s ease;
      color: var(--page-599-to-php-text-dark);
    }

    .page-599-to-php__faq-question h3 {
      margin: 0;
      font-size: 1.3em;
      flex-grow: 1;
      pointer-events: none; /* Prevents h3 from blocking click event */
      color: var(--page-599-to-php-primary-color);
    }

    .page-599-to-php__faq-question:hover {
      background-color: #e9ecef;
    }

    .page-599-to-php__faq-toggle {
      font-size: 1.8em;
      font-weight: bold;
      color: var(--page-599-to-php-primary-color);
      margin-left: 15px;
      transition: transform 0.3s ease;
      pointer-events: none; /* Prevents toggle from blocking click event */
    }

    .page-599-to-php__faq-item.active .page-599-to-php__faq-toggle {
      transform: rotate(45deg);
    }

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

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

    /* Responsive Design */
    @media (max-width: 992px) {
      .page-599-to-php__hero-title {
        font-size: 2.8em;
      }
      .page-599-to-php__hero-subtitle {
        font-size: 1.2em;
      }
      .page-599-to-php__section-title,
      .page-599-to-php__faq-title {
        font-size: 2em;
      }
      .page-599-to-php__section,
      .page-599-to-php__faq-section {
        padding: 30px;
      }
    }

    @media (max-width: 768px) {
      .page-599-to-php__hero-section {
        padding: 40px 15px;
        min-height: 300px;
      }
      .page-599-to-php__hero-title {
        font-size: 2.2em;
      }
      .page-599-to-php__hero-subtitle {
        font-size: 1em;
      }
      .page-599-to-php__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
      .page-599-to-php__container {
        padding: 0 15px;
      }
      .page-599-to-php__section {
        padding: 25px;
      }
      .page-599-to-php__section-title,
      .page-599-to-php__faq-title {
        font-size: 1.8em;
      }
      .page-599-to-php__text-content p {
        font-size: 1em;
      }
      .page-599-to-php__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .page-599-to-php__feature-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 20px !important; /* Adjust padding for smaller screens */
      }
      .page-599-to-php__feature-text {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }
      .page-599-to-php__faq-question {
        padding: 15px 20px;
      }
      .page-599-to-php__faq-question h3 {
        font-size: 1.1em;
      }
      .page-599-to-php__faq-toggle {
        font-size: 1.5em;
      }
      .page-599-to-php__faq-answer {
        padding: 0 20px;
      }
      .page-599-to-php__faq-item.active .page-599-to-php__faq-answer {
        padding: 15px 20px !important;
      }
      .page-599-to-php__image,
      .page-599-to-php__feature-icon {
        max-width: 100% !important;
        height: auto !important;
      }
      .page-599-to-php__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
      }
    }

    @media (max-width: 480px) {
      .page-599-to-php__hero-title {
        font-size: 1.8em;
      }
      .page-599-to-php__hero-subtitle {
        font-size: 0.9em;
      }
      .page-599-to-php__section-title,
      .page-599-to-php__faq-title {
        font-size: 1.5em;
      }
      .page-599-to-php__section,
      .page-599-to-php__faq-section {
        padding: 20px;
      }
    }
  