.page-resources-sedie-origin-rules {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Primary dark background */
  line-height: 1.6;
}

.page-resources-sedie-origin-rules__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-sedie-origin-rules__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1A3A5F 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700; /* Golden accent */
}

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

.page-resources-sedie-origin-rules__hero > * {
  position: relative;
  z-index: 1;
}

.page-resources-sedie-origin-rules__title {
  font-size: 3.5em;
  color: #FFD700; /* Golden for main title */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  font-weight: bold;
}

.page-resources-sedie-origin-rules__subtitle {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 40px;
}

.page-resources-sedie-origin-rules__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Golden button */
  color: #0A192F; /* Dark text on golden button */
  padding: 15px 30px;
  border-radius: 8px;
  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(255, 215, 0, 0.4);
}

.page-resources-sedie-origin-rules__cta-button:hover {
  background-color: #E0C000; /* Slightly darker golden on hover */
  transform: translateY(-3px);
}

.page-resources-sedie-origin-rules__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-resources-sedie-origin-rules__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-resources-sedie-origin-rules__section:last-of-type {
  border-bottom: none;
}

.page-resources-sedie-origin-rules__heading {
  font-size: 2.5em;
  color: #FFD700; /* Golden for section headings */
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 15px;
}

.page-resources-sedie-origin-rules__sub-heading {
  font-size: 1.8em;
  color: #FFD700; /* Golden for sub-headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-resources-sedie-origin-rules__section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-resources-sedie-origin-rules__list {
  list-style-type: disc;
  margin-left: 40px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-resources-sedie-origin-rules__list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-sedie-origin-rules__sub-list {
  list-style-type: circle;
  margin-left: 30px;
  color: #E0E0E0;
}

.page-resources-sedie-origin-rules__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.page-resources-sedie-origin-rules__image:hover {
  transform: scale(1.02);
}

.page-resources-sedie-origin-rules__faq-item {
  background-color: #1A2F4F; /* Slightly lighter dark blue for FAQ items */
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-sedie-origin-rules__faq-question {
  font-size: 1.5em;
  color: #FFD700; /* Golden for FAQ questions */
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-sedie-origin-rules__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-resources-sedie-origin-rules__faq-question.active::after {
  transform: rotate(45deg);
}

.page-resources-sedie-origin-rules__faq-answer {
  font-size: 1.1em;
  color: #B0B0B0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-resources-sedie-origin-rules__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-sedie-origin-rules__title {
    font-size: 2.5em;
  }
  .page-resources-sedie-origin-rules__subtitle {
    font-size: 1em;
  }
  .page-resources-sedie-origin-rules__heading {
    font-size: 2em;
  }
  .page-resources-sedie-origin-rules__sub-heading {
    font-size: 1.5em;
  }
  .page-resources-sedie-origin-rules__section {
    padding: 40px 0;
  }
  .page-resources-sedie-origin-rules__list {
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-sedie-origin-rules__title {
    font-size: 2em;
  }
  .page-resources-sedie-origin-rules__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-resources-sedie-origin-rules__heading {
    font-size: 1.8em;
  }
  .page-resources-sedie-origin-rules__sub-heading {
    font-size: 1.3em;
  }
  .page-resources-sedie-origin-rules__faq-question {
    font-size: 1.3em;
  }
}