/* style/resources-aijiubo-platform-overview.css */
.page-resources-aijiubo-platform-overview {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

.page-resources-aijiubo-platform-overview__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-aijiubo-platform-overview__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-aijiubo-platform-overview__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,pattern,blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-aijiubo-platform-overview__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Auxiliary color for highlight */
  position: relative;
  z-index: 1;
}

.page-resources-aijiubo-platform-overview__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-resources-aijiubo-platform-overview__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color for CTA */
  color: #003366; /* Main color for text on CTA */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.page-resources-aijiubo-platform-overview__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-resources-aijiubo-platform-overview__cta-button--primary {
  background-color: #FFCC00;
  color: #003366;
}

.page-resources-aijiubo-platform-overview__cta-button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  margin-left: 20px;
}

.page-resources-aijiubo-platform-overview__cta-button--secondary:hover {
  background-color: #004d99;
  color: #FFCC00;
}

.page-resources-aijiubo-platform-overview__cta-button--final {
  margin-top: 40px;
  font-size: 1.2em;
  padding: 18px 35px;
}

.page-resources-aijiubo-platform-overview__content-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-resources-aijiubo-platform-overview__section-title {
  font-size: 2.5em;
  color: #003366; /* Main color for section titles */
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-aijiubo-platform-overview__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Auxiliary color for underline */
  border-radius: 2px;
}

.page-resources-aijiubo-platform-overview__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333;
}

.page-resources-aijiubo-platform-overview__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-resources-aijiubo-platform-overview__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-aijiubo-platform-overview__image--large {
  max-width: 900px;
}

.page-resources-aijiubo-platform-overview__feature-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-aijiubo-platform-overview__feature-item {
  background-color: #f0f4f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-aijiubo-platform-overview__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-resources-aijiubo-platform-overview__feature-title {
  font-size: 1.6em;
  color: #003366; /* Main color for feature titles */
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.page-resources-aijiubo-platform-overview__feature-title::before {
  content: '▪';
  color: #FFCC00; /* Auxiliary color for bullet point */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  line-height: 1;
}

.page-resources-aijiubo-platform-overview__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.page-resources-aijiubo-platform-overview__product-card {
  background-color: #f0f4f8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-aijiubo-platform-overview__product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-aijiubo-platform-overview__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-resources-aijiubo-platform-overview__product-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-resources-aijiubo-platform-overview__product-button {
  display: inline-block;
  background-color: #003366;
  color: #FFCC00;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-aijiubo-platform-overview__product-button:hover {
  background-color: #004d99;
  color: #fff;
}

.page-resources-aijiubo-platform-overview__registration-steps {
  list-style: decimal;
  padding-left: 25px;
  margin: 30px 0;
  font-size: 1.1em;
  color: #333;
}

.page-resources-aijiubo-platform-overview__step-item {
  margin-bottom: 10px;
}

.page-resources-aijiubo-platform-overview__cta-group {
  text-align: center;
  margin: 50px 0;
}

.page-resources-aijiubo-platform-overview__related-links {
  background-color: #e6eef5;
  padding: 50px 0;
  text-align: center;
}

.page-resources-aijiubo-platform-overview__link-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.page-resources-aijiubo-platform-overview__link {
  display: inline-block;
  background-color: #003366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-aijiubo-platform-overview__link:hover {
  background-color: #004d99;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-aijiubo-platform-overview__hero-title {
    font-size: 2.5em;
  }

  .page-resources-aijiubo-platform-overview__hero-description {
    font-size: 1em;
  }

  .page-resources-aijiubo-platform-overview__section-title {
    font-size: 2em;
  }

  .page-resources-aijiubo-platform-overview__feature-list,
  .page-resources-aijiubo-platform-overview__product-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-aijiubo-platform-overview__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-resources-aijiubo-platform-overview__cta-group {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-resources-aijiubo-platform-overview__hero-title {
    font-size: 2em;
  }

  .page-resources-aijiubo-platform-overview__hero-description {
    font-size: 0.9em;
  }

  .page-resources-aijiubo-platform-overview__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-resources-aijiubo-platform-overview__section-title {
    font-size: 1.8em;
  }

  .page-resources-aijiubo-platform-overview__paragraph,
  .page-resources-aijiubo-platform-overview__step-item {
    font-size: 0.95em;
  }

  .page-resources-aijiubo-platform-overview__link-list {
    flex-direction: column;
  }
}