
    :root {
      --primary-color: #FFD700; /* Gold */
      --secondary-color: #007BFF; /* Blue */
      --text-color: #333333;
      --heading-color: #1a1a1a;
      --background-color: #f8f9fa;
      --light-gray: #e9ecef;
      --dark-gray: #6c757d;
      --white-color: #ffffff;
    }

    .page-599-dollars-to-philippine-peso {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      background-color: var(--background-color);
      padding-top: 10px; /* Small padding top, assuming body already has --header-offset */
    }

    .page-599-dollars-to-philippine-peso__container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
      box-sizing: border-box;
    }

    .page-599-dollars-to-philippine-peso__hero-section {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(135deg, #0a1128, #1a2a6c);
      color: var(--white-color);
      margin-bottom: 40px;
      border-radius: 8px;
    }

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

    .page-599-dollars-to-philippine-peso__hero-subtitle {
      font-size: 1.5em;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.4;
    }

    .page-599-dollars-to-philippine-peso__section {
      background-color: var(--white-color);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .page-599-dollars-to-philippine-peso__section-title {
      font-size: 2.2em;
      color: var(--heading-color);
      margin-bottom: 25px;
      text-align: center;
      border-bottom: 2px solid var(--primary-color);
      padding-bottom: 15px;
      display: block;
    }

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

    .page-599-dollars-to-philippine-peso__image-wrapper {
      text-align: center;
      margin: 30px 0;
    }

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

    .page-599-dollars-to-philippine-peso__list {
      list-style: none;
      padding: 0;
      margin: 20px 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }

    .page-599-dollars-to-philippine-peso__list-item {
      background-color: var(--light-gray);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-599-dollars-to-philippine-peso__list-item h3 {
      color: var(--secondary-color);
      margin-top: 0;
      font-size: 1.3em;
    }

    .page-599-dollars-to-philippine-peso__cta-button {
      display: block;
      width: fit-content;
      margin: 30px auto 0;
      padding: 15px 30px;
      background-color: var(--primary-color);
      color: var(--heading-color);
      text-decoration: none;
      border-radius: 5px;
      font-size: 1.2em;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .page-599-dollars-to-philippine-peso__cta-button:hover {
      background-color: #e6c200; /* Slightly darker gold */
      transform: translateY(-2px);
    }

    /* FAQ Section Styles */
    .page-599-dollars-to-philippine-peso__faq-section {
      background-color: var(--white-color);
      padding: 40px;
      margin-bottom: 30px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .page-599-dollars-to-philippine-peso__faq-title {
      font-size: 2.2em;
      color: var(--heading-color);
      margin-bottom: 25px;
      text-align: center;
      border-bottom: 2px solid var(--primary-color);
      padding-bottom: 15px;
      display: block;
    }

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

    .page-599-dollars-to-philippine-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;
    }

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

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

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

    .page-599-dollars-to-philippine-peso__faq-item.active .page-599-dollars-to-philippine-peso__faq-toggle {
      transform: rotate(45deg); /* Plus sign rotates to form an 'X' or minus */
    }

    .page-599-dollars-to-philippine-peso__faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 20px;
      background-color: var(--white-color);
      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(--dark-gray);
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
      .page-599-dollars-to-philippine-peso__hero-section {
        padding: 40px 15px;
      }

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

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

      .page-599-dollars-to-philippine-peso__section,
      .page-599-dollars-to-philippine-peso__faq-section {
        padding: 20px;
      }

      .page-599-dollars-to-philippine-peso__section-title,
      .page-599-dollars-to-philippine-peso__faq-title {
        font-size: 1.8em;
      }

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

      .page-599-dollars-to-philippine-peso__list {
        grid-template-columns: 1fr; /* Stack list items on mobile */
        gap: 15px;
      }

      .page-599-dollars-to-philippine-peso__list-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 15px; /* Adjust padding for mobile */
      }
      
      .page-599-dollars-to-philippine-peso__list-item p,
      .page-599-dollars-to-philippine-peso__list-item h3 {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
      }

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

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

      .page-599-dollars-to-philippine-peso__faq-answer {
        padding: 0 15px;
      }

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

      .page-599-dollars-to-philippine-peso__image {
        max-width: 100%;
        height: auto;
        box-sizing: border-box !important;
      }

      .page-599-dollars-to-philippine-peso__image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
      }
    }
    @media (max-width: 480px) {
      .page-599-dollars-to-philippine-peso__hero-title {
        font-size: 1.8em;
      }
      .page-599-dollars-to-philippine-peso__hero-subtitle {
        font-size: 1em;
      }
      .page-599-dollars-to-philippine-peso__cta-button {
        padding: 12px 25px;
        font-size: 1em;
      }
    }
  