
    /* Base styles for the page */
    :root {
      --primary-color: #007bff;
      --secondary-color: #6c757d;
      --accent-color: #ffc107;
      --text-color: #333;
      --background-color: #f8f9fa;
      --light-gray: #e9ecef;
      --dark-gray: #343a40;
      --white: #ffffff;
      --border-radius: 8px;
      --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-color);
      margin: 0;
      padding: 0;
    }

    .page-599-dollars-to-peso {
      padding-top: var(--header-offset, 122px); /* Fallback for header offset */
      padding-bottom: 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .page-599-dollars-to-peso__section {
      padding: 40px 20px;
      margin-bottom: 20px;
      background-color: var(--white);
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
    }

    .page-599-dollars-to-peso__hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('[GALLERY:hero:1920x1080:currency,philippines,money]') no-repeat center center/cover;
      color: var(--white);
      text-align: center;
      padding: 100px 20px;
      border-radius: 0; /* No border-radius for hero to span full width */
      margin-bottom: 0;
      position: relative;
      padding-top: 10px; /* Small decorative top padding, main offset from body */
    }

    .page-599-dollars-to-peso__hero-title {
      font-size: 3em;
      margin-bottom: 15px;
      color: var(--accent-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-599-dollars-to-peso__hero-subtitle {
      font-size: 1.5em;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .page-599-dollars-to-peso__button {
      display: inline-block;
      background-color: var(--primary-color);
      color: var(--white);
      padding: 12px 25px;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      border: none;
      cursor: pointer;
      font-size: 1em;
    }

    .page-599-dollars-to-peso__button:hover {
      background-color: #0056b3;
    }

    .page-599-dollars-to-peso__heading {
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
      font-size: 2.5em;
    }

    .page-599-dollars-to-peso__subheading {
      color: var(--secondary-color);
      font-size: 1.8em;
      margin-bottom: 20px;
      border-bottom: 2px solid var(--light-gray);
      padding-bottom: 10px;
    }

    .page-599-dollars-to-peso__content-text {
      font-size: 1.1em;
      margin-bottom: 15px;
      color: var(--dark-gray);
    }

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

    .page-599-dollars-to-peso__image {
      max-width: 100%;
      height: auto;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      display: block;
      margin: 0 auto;
    }

    .page-599-dollars-to-peso__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    .page-599-dollars-to-peso__list-item {
      background-color: var(--light-gray);
      margin-bottom: 10px;
      padding: 15px 20px;
      border-left: 5px solid var(--primary-color);
      border-radius: var(--border-radius);
      box-sizing: border-box; /* Required for list items */
      word-wrap: break-word !important; /* Text wrapping */
      overflow-wrap: break-word !important; /* Text wrapping */
    }

    .page-599-dollars-to-peso__call-to-action {
      text-align: center;
      padding: 50px 20px;
      background-color: var(--primary-color);
      color: var(--white);
      border-radius: var(--border-radius);
      margin-top: 40px;
    }

    .page-599-dollars-to-peso__call-to-action-title {
      font-size: 2.5em;
      margin-bottom: 20px;
      color: var(--accent-color);
    }

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

    /* FAQ Section Styles */
    .page-599-dollars-to-peso__faq-section {
      padding: 40px 20px;
      margin-top: 40px;
      background-color: var(--white);
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
    }

    .page-599-dollars-to-peso__faq-title {
      font-size: 2.5em;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 30px;
    }

    .page-599-dollars-to-peso__faq-item {
      border: 1px solid var(--light-gray);
      border-radius: var(--border-radius);
      margin-bottom: 15px;
      overflow: hidden;
    }

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

    .page-599-dollars-to-peso__faq-question:hover {
      background-color: #dee2e6;
    }

    .page-599-dollars-to-peso__faq-question h3 {
      margin: 0;
      font-size: 1.2em;
      color: var(--primary-color);
      pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-599-dollars-to-peso__faq-toggle {
      font-size: 1.5em;
      font-weight: bold;
      color: var(--primary-color);
      pointer-events: none; /* Prevent toggle from blocking click */
      transition: transform 0.3s ease;
    }

    .page-599-dollars-to-peso__faq-item.active .page-599-dollars-to-peso__faq-toggle {
      transform: rotate(45deg); /* Rotate '+' to 'x' or use '-' */
    }

    .page-599-dollars-to-peso__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;
      background-color: var(--white);
      color: var(--text-color);
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-599-dollars-to-peso {
        padding-left: 15px;
        padding-right: 15px;
      }

      .page-599-dollars-to-peso__hero-title {
        font-size: 2.2em;
      }

      .page-599-dollars-to-peso__hero-subtitle {
        font-size: 1.1em;
      }

      .page-599-dollars-to-peso__heading {
        font-size: 2em;
      }

      .page-599-dollars-to-peso__subheading {
        font-size: 1.5em;
      }

      .page-599-dollars-to-peso__content-text {
        font-size: 1em;
      }

      .page-599-dollars-to-peso__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 12px 15px;
      }

      .page-599-dollars-to-peso__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-peso__image {
        max-width: 100% !important;
        height: auto !important;
      }

      .page-599-dollars-to-peso__image-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
      }

      .page-599-dollars-to-peso__call-to-action-title {
        font-size: 2em;
      }

      .page-599-dollars-to-peso__call-to-action-text {
        font-size: 1em;
      }

      .page-599-dollars-to-peso__faq-question {
        padding: 12px 15px;
      }

      .page-599-dollars-to-peso__faq-question h3 {
        font-size: 1.1em;
      }

      .page-599-dollars-to-peso__faq-answer {
        padding: 15px 15px !important;
      }
    }

    @media (max-width: 480px) {
      .page-599-dollars-to-peso__hero-title {
        font-size: 1.8em;
      }

      .page-599-dollars-to-peso__hero-subtitle {
        font-size: 1em;
      }

      .page-599-dollars-to-peso__heading {
        font-size: 1.8em;
      }
    }
  