.page-resources-pm-ae-m9-download-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: var(--background-color, #ffffff); /* Ensure consistent background */
}

.page-resources-pm-ae-m9-download-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-pm-ae-m9-download-guide__container--center {
  text-align: center;
}

.page-resources-pm-ae-m9-download-guide__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-resources-pm-ae-m9-download-guide__section-title {
  font-size: 36px;
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-pm-ae-m9-download-guide__text-block {
  font-size: 17px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Hero Section */
.page-resources-pm-ae-m9-download-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px);
  background: linear-gradient(135deg, #e0ffe0, #ffffff);
}

.page-resources-pm-ae-m9-download-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-pm-ae-m9-download-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-resources-pm-ae-m9-download-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-resources-pm-ae-m9-download-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-resources-pm-ae-m9-download-guide__main-title {
  font-size: 48px;
  color: #017439;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-pm-ae-m9-download-guide__intro-description {
  font-size: 20px;
  color: #555555;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-pm-ae-m9-download-guide__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(195, 8, 8, 0.3);
}

.page-resources-pm-ae-m9-download-guide__cta-button:hover {
  background: #a80707;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(195, 8, 8, 0.4);
}

/* Why Download Section */
.page-resources-pm-ae-m9-download-guide__section--why-download .page-resources-pm-ae-m9-download-guide__section-title {
  color: #017439;
}

.page-resources-pm-ae-m9-download-guide__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-pm-ae-m9-download-guide__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-pm-ae-m9-download-guide__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-pm-ae-m9-download-guide__feature-title {
  font-size: 24px;
  color: #017439;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-pm-ae-m9-download-guide__feature-item p {
  font-size: 16px;
  color: #555555;
}

.page-resources-pm-ae-m9-download-guide__section--why-download img {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Download Guide Section */
.page-resources-pm-ae-m9-download-guide__dark-bg {
  background: #017439;
  color: #ffffff;
}

.page-resources-pm-ae-m9-download-guide__dark-bg .page-resources-pm-ae-m9-download-guide__section-title {
  color: #ffffff;
}

.page-resources-pm-ae-m9-download-guide__dark-bg .page-resources-pm-ae-m9-download-guide__text-block {
  color: #f0f0f0;
}

.page-resources-pm-ae-m9-download-guide__download-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-resources-pm-ae-m9-download-guide__platform-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-resources-pm-ae-m9-download-guide__platform-item--pc {
  grid-column: 1 / -1; /* Span full width for PC section */
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-resources-pm-ae-m9-download-guide__platform-title {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 600;
}

.page-resources-pm-ae-m9-download-guide__download-steps {
  list-style: decimal;
  padding-left: 25px;
  text-align: left;
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-pm-ae-m9-download-guide__download-steps li {
  margin-bottom: 15px;
}

.page-resources-pm-ae-m9-download-steps strong {
  color: #FFFF00;
}

.page-resources-pm-ae-m9-download-guide__platform-item img {
  width: 100%;
  height: auto;
  max-width: 600px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-pm-ae-m9-download-guide__btn-primary {
  display: inline-block;
  padding: 15px 35px;
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(195, 8, 8, 0.2);
}

.page-resources-pm-ae-m9-download-guide__btn-primary:hover {
  background: #a80707;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(195, 8, 8, 0.3);
}

.page-resources-pm-ae-m9-download-guide__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  background: #ffffff;
  color: #017439;
  text-decoration: none;
  border: 2px solid #017439;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-pm-ae-m9-download-guide__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Safety Section */
.page-resources-pm-ae-m9-download-guide__section--safety {
  background: #f9f9f9;
}

.page-resources-pm-ae-m9-download-guide__section--safety .page-resources-pm-ae-m9-download-guide__section-title {
  color: #017439;
}

.page-resources-pm-ae-m9-download-guide__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-pm-ae-m9-download-guide__security-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-resources-pm-ae-m9-download-guide__security-title {
  font-size: 22px;
  color: #017439;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-pm-ae-m9-download-guide__security-item p {
  font-size: 16px;
  color: #555555;
}

.page-resources-pm-ae-m9-download-guide__section--safety img {
  width: 100%;
  height: auto;
  max-width: 700px;
  display: block;
  margin: 50px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-resources-pm-ae-m9-download-guide__section--faq .page-resources-pm-ae-m9-download-guide__section-title {
  color: #017439;
}

.page-resources-pm-ae-m9-download-guide__faq-list {
  margin-top: 40px;
}

.page-resources-pm-ae-m9-download-guide__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-pm-ae-m9-download-guide__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background: #fdfdfd;
}

.page-resources-pm-ae-m9-download-guide__faq-item.active .page-resources-pm-ae-m9-download-guide__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #fdfdfd;
  border-radius: 0 0 8px 8px;
}

.page-resources-pm-ae-m9-download-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-pm-ae-m9-download-guide__faq-item.active .page-resources-pm-ae-m9-download-guide__faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.page-resources-pm-ae-m9-download-guide__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-pm-ae-m9-download-guide__faq-question:active {
  background: #eeeeee;
}

.page-resources-pm-ae-m9-download-guide__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #333333;
  pointer-events: none;
}

.page-resources-pm-ae-m9-download-guide__faq-question a {
  color: #017439;
  text-decoration: underline;
}

.page-resources-pm-ae-m9-download-guide__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #017439;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-resources-pm-ae-m9-download-guide__faq-item.active .page-resources-pm-ae-m9-download-guide__faq-toggle {
  color: #C30808;
  transform: rotate(0deg);
}

/* Final CTA Section */
.page-resources-pm-ae-m9-download-guide__section--cta-final {
  padding: 80px 0;
  text-align: center;
  background: #017439;
  color: #ffffff;
}

.page-resources-pm-ae-m9-download-guide__section--cta-final .page-resources-pm-ae-m9-download-guide__section-title {
  color: #ffffff;
  font-size: 40px;
}

.page-resources-pm-ae-m9-download-guide__section--cta-final .page-resources-pm-ae-m9-download-guide__text-block {
  color: #f0f0f0;
  font-size: 18px;
  max-width: 900px;
}

.page-resources-pm-ae-m9-download-guide__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Global Image Styles */
.page-resources-pm-ae-m9-download-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-pm-ae-m9-download-guide__main-title {
    font-size: 40px;
  }

  .page-resources-pm-ae-m9-download-guide__intro-description {
    font-size: 18px;
  }

  .page-resources-pm-ae-m9-download-guide__section-title {
    font-size: 32px;
  }

  .page-resources-pm-ae-m9-download-guide__feature-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-resources-pm-ae-m9-download-guide__download-platforms {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-resources-pm-ae-m9-download-guide__platform-item--pc {
    max-width: 600px;
  }

  .page-resources-pm-ae-m9-download-guide__platform-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .page-resources-pm-ae-m9-download-guide__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-resources-pm-ae-m9-download-guide__hero-image img {
    border-radius: 8px;
  }
  
  .page-resources-pm-ae-m9-download-guide__main-title {
    font-size: 32px;
  }

  .page-resources-pm-ae-m9-download-guide__intro-description {
    font-size: 16px;
  }

  .page-resources-pm-ae-m9-download-guide__cta-button {
    padding: 14px 30px;
    font-size: 18px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-pm-ae-m9-download-guide__section {
    padding: 40px 0;
  }

  .page-resources-pm-ae-m9-download-guide__container {
    padding: 0 15px;
  }

  .page-resources-pm-ae-m9-download-guide__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .page-resources-pm-ae-m9-download-guide__text-block {
    font-size: 16px;
  }

  .page-resources-pm-ae-m9-download-guide__feature-list,
  .page-resources-pm-ae-m9-download-guide__security-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-pm-ae-m9-download-guide__feature-item,
  .page-resources-pm-ae-m9-download-guide__security-item {
    padding: 25px;
  }

  .page-resources-pm-ae-m9-download-guide__feature-title,
  .page-resources-pm-ae-m9-download-guide__security-title {
    font-size: 20px;
  }

  .page-resources-pm-ae-m9-download-guide__platform-item {
    padding: 30px 20px;
  }

  .page-resources-pm-ae-m9-download-guide__platform-title {
    font-size: 22px;
  }

  .page-resources-pm-ae-m9-download-guide__download-steps {
    font-size: 15px;
    padding-left: 20px;
  }

  .page-resources-pm-ae-m9-download-guide__btn-primary,
  .page-resources-pm-ae-m9-download-guide__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-pm-ae-m9-download-guide__button-group {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-resources-pm-ae-m9-download-guide__faq-question {
    padding: 15px;
  }

  .page-resources-pm-ae-m9-download-guide__faq-question h3 {
    font-size: 16px;
  }

  .page-resources-pm-ae-m9-download-guide__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-resources-pm-ae-m9-download-guide__faq-item.active .page-resources-pm-ae-m9-download-guide__faq-answer {
    padding: 15px !important;
  }

  .page-resources-pm-ae-m9-download-guide__section--cta-final .page-resources-pm-ae-m9-download-guide__section-title {
    font-size: 30px;
  }

  .page-resources-pm-ae-m9-download-guide__section--cta-final .page-resources-pm-ae-m9-download-guide__text-block {
    font-size: 16px;
  }

  /* Image responsiveness for content area */
  .page-resources-pm-ae-m9-download-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-resources-pm-ae-m9-download-guide__section,
  .page-resources-pm-ae-m9-download-guide__container,
  .page-resources-pm-ae-m9-download-guide__hero-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-pm-ae-m9-download-guide__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}