.page-event-center-event-statistics {
  font-family: Arial, sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #1A2B4C; /* Main brand color */
  line-height: 1.6;
}

.page-event-center-event-statistics__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-event-center-event-statistics__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #0F1A2F 100%); /* Darker gradient for hero */
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.page-event-center-event-statistics__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[IMAGE:hero_main_bg_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-event-center-event-statistics__hero-content {
  flex: 1;
  max-width: 600px;
  z-index: 1;
}

.page-event-center-event-statistics__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Accent color for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-event-center-event-statistics__hero-description {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-event-center-event-statistics__hero-btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2B4C;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-event-center-event-statistics__hero-btn:hover {
  background-color: #E0B800;
  transform: translateY(-3px);
}

.page-event-center-event-statistics__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.page-event-center-event-statistics__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
}

.page-event-center-event-statistics__intro-section,
.page-event-center-event-statistics__features-section,
.page-event-center-event-statistics__how-to-use,
.page-event-center-event-statistics__expert-insight,
.page-event-center-event-statistics__cta-section,
.page-event-center-event-statistics__responsibility {
  padding: 60px 0;
  text-align: center;
}

.page-event-center-event-statistics__intro-section {
  background-color: #132038;
}

.page-event-center-event-statistics__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-event-center-event-statistics__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-event-center-event-statistics__text-block {
  font-size: 1.1em;
  color: #D0D0D0;
  margin-bottom: 20px;
  text-align: left;
}

.page-event-center-event-statistics__text-block strong {
  color: #FFD700;
}

.page-event-center-event-statistics__features-section {
  background-color: #1A2B4C;
}

.page-event-center-event-statistics__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-event-center-event-statistics__feature-item {
  background-color: #132038;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-event-center-event-statistics__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-event-center-event-statistics__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-event-center-event-statistics__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-event-center-event-statistics__feature-description {
  font-size: 1em;
  color: #C0C0C0;
}

.page-event-center-event-statistics__how-to-use {
  background-color: #132038;
}

.page-event-center-event-statistics__numbered-list {
  list-style-type: none;
  counter-reset: my-awesome-counter;
  padding: 0;
  margin: 40px 0;
  text-align: left;
}

.page-event-center-event-statistics__numbered-list li {
  counter-increment: my-awesome-counter;
  font-size: 1.1em;
  color: #D0D0D0;
  margin-bottom: 20px;
  position: relative;
  padding-left: 60px;
}

.page-event-center-event-statistics__numbered-list li::before {
  content: counter(my-awesome-counter);
  background-color: #FFD700;
  color: #1A2B4C;
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.page-event-center-event-statistics__numbered-list li strong {
  color: #FFD700;
}

.page-event-center-event-statistics__expert-insight {
  background-color: #1A2B4C;
}

.page-event-center-event-statistics__content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-event-center-event-statistics__content-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-event-center-event-statistics__content-text {
  flex: 2;
  min-width: 300px;
}

.page-event-center-event-statistics__cta-section {
  background: linear-gradient(90deg, #FFD700 0%, #E0B800 100%); /* Gold gradient for CTA */
  padding: 80px 0;
}

.page-event-center-event-statistics__cta-section .page-event-center-event-statistics__section-title {
  color: #1A2B4C;
}

.page-event-center-event-statistics__cta-section .page-event-center-event-statistics__section-title::after {
  background-color: #1A2B4C;
}

.page-event-center-event-statistics__cta-section .page-event-center-event-statistics__text-block {
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-event-center-event-statistics__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-event-center-event-statistics__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-event-center-event-statistics__btn--primary {
  background-color: #1A2B4C;
  color: #FFD700;
}

.page-event-center-event-statistics__btn--primary:hover {
  background-color: #0F1A2F;
  transform: translateY(-3px);
}

.page-event-center-event-statistics__btn--secondary {
  background-color: #FFFFFF;
  color: #1A2B4C;
  border: 1px solid #1A2B4C;
}

.page-event-center-event-statistics__btn--secondary:hover {
  background-color: #F0F0F0;
  transform: translateY(-3px);
}

.page-event-center-event-statistics__responsibility {
  background-color: #132038;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-event-center-event-statistics__hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 0;
  }

  .page-event-center-event-statistics__hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .page-event-center-event-statistics__hero-image-wrapper {
    order: -1; /* Image above text on smaller screens */
  }

  .page-event-center-event-statistics__hero-title {
    font-size: 2.8em;
  }

  .page-event-center-event-statistics__section-title {
    font-size: 2em;
  }

  .page-event-center-event-statistics__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-event-center-event-statistics__content-block {
    flex-direction: column;
  }

  .page-event-center-event-statistics__content-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-event-center-event-statistics__hero {
    padding: 40px 0;
  }

  .page-event-center-event-statistics__hero-title {
    font-size: 2.2em;
  }

  .page-event-center-event-statistics__hero-description {
    font-size: 1em;
  }

  .page-event-center-event-statistics__section-title {
    font-size: 1.8em;
  }

  .page-event-center-event-statistics__text-block,
  .page-event-center-event-statistics__feature-description,
  .page-event-center-event-statistics__numbered-list li {
    font-size: 0.95em;
  }

  .page-event-center-event-statistics__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-event-center-event-statistics__btn {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .page-event-center-event-statistics__hero-title {
    font-size: 1.8em;
  }

  .page-event-center-event-statistics__section-title {
    font-size: 1.5em;
  }

  .page-event-center-event-statistics__hero-btn,
  .page-event-center-event-statistics__btn {
    padding: 12px 20px;
    font-size: 0.9em;
  }

  .page-event-center-event-statistics__numbered-list li {
    padding-left: 50px;
  }

  .page-event-center-event-statistics__numbered-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1em;
  }
}