.page-resources-g088-registration-guide {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light grey for general text on dark background */
  background-color: #001a33; /* Darker variant of main color for overall background */
  line-height: 1.6;
}

.page-resources-g088-registration-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-g088-registration-guide__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Main color to darker variant */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-g088-registration-guide__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,patterns,dark_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-resources-g088-registration-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFCC00; /* Accent color for title */
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-g088-registration-guide__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-g088-registration-guide__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Accent color for CTA */
  color: #003366; /* Main color for text on accent background */
  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;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(255, 204, 0, 0.4);
}

.page-resources-g088-registration-guide__cta-button:hover {
  background-color: #e6b800; /* Slightly darker accent on hover */
  transform: translateY(-3px);
}

.page-resources-g088-registration-guide__secondary-cta-button {
  display: inline-block;
  background-color: transparent;
  color: #FFCC00;
  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, color 0.3s ease;
  border: 2px solid #FFCC00;
  cursor: pointer;
  margin-left: 20px;
  position: relative;
  z-index: 1;
}

.page-resources-g088-registration-guide__secondary-cta-button:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-3px);
}

.page-resources-g088-registration-guide__section {
  padding: 60px 0;
  text-align: center;
}

.page-resources-g088-registration-guide__section:nth-of-type(even) {
  background-color: #002244; /* Slightly lighter dark blue for alternating sections */
}

.page-resources-g088-registration-guide__section-title {
  font-size: 2.8em;
  color: #FFCC00;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-g088-registration-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-resources-g088-registration-guide__intro-text {
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #c0c0c0;
}

.page-resources-g088-registration-guide__why-register .page-resources-g088-registration-guide__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-g088-registration-guide__feature-item {
  background-color: #003366; /* Main color for feature cards */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 204, 0, 0.3);
}

.page-resources-g088-registration-guide__feature-item:hover {
  transform: translateY(-10px);
  background-color: #004080; /* Slightly lighter main color on hover */
}

.page-resources-g088-registration-guide__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5));
}

.page-resources-g088-registration-guide__feature-item h3 {
  font-size: 1.8em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-resources-g088-registration-guide__feature-item p {
  font-size: 1em;
  color: #a0a0a0;
}

.page-resources-g088-registration-guide__steps .page-resources-g088-registration-guide__step-by-step {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}

.page-resources-g088-registration-guide__step-item {
  background-color: #003366;
  padding: 40px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255, 204, 0, 0.3);
}

.page-resources-g088-registration-guide__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFCC00;
  color: #003366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

.page-resources-g088-registration-guide__step-item h3 {
  font-size: 2.2em;
  color: #FFCC00;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-resources-g088-registration-guide__step-item p {
  font-size: 1.1em;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-resources-g088-registration-guide__step-item ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-resources-g088-registration-guide__step-item ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFCC00"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #c0c0c0;
}

.page-resources-g088-registration-guide__step-item strong {
  color: #FFCC00;
}

.page-resources-g088-registration-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 204, 0, 0.2);
}

.page-resources-g088-registration-guide__tip-box {
  background-color: #004080; /* Slightly lighter main color */
  border-left: 6px solid #FFCC00;
  padding: 30px;
  margin-top: 60px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-g088-registration-guide__tip-box h3 {
  color: #FFCC00;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-resources-g088-registration-guide__tip-box ul {
  list-style-type: none;
  padding-left: 0;
}

.page-resources-g088-registration-guide__tip-box ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFCC00"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #c0c0c0;
  font-size: 1.05em;
}

.page-resources-g088-registration-guide__offers .page-resources-g088-registration-guide__offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-resources-g088-registration-guide__offer-item {
  background-color: #003366;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 204, 0, 0.3);
}

.page-resources-g088-registration-guide__offer-item:hover {
  transform: translateY(-10px);
  background-color: #004080;
}

.page-resources-g088-registration-guide__offer-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5));
}

.page-resources-g088-registration-guide__offer-item h3 {
  font-size: 1.7em;
  color: #FFCC00;
  margin-bottom: 15px;
}

.page-resources-g088-registration-guide__offer-item p {
  font-size: 1em;
  color: #a0a0a0;
}

.page-resources-g088-registration-guide__call-to-action {
  font-size: 1.3em;
  color: #FFCC00;
  margin-top: 50px;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-resources-g088-registration-guide__faq .page-resources-g088-registration-guide__faq-item {
  background-color: #002244;
  border: 1px solid #004080;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px 30px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-g088-registration-guide__faq .page-resources-g088-registration-guide__faq-item h3 {
  color: #FFCC00;
  font-size: 1.5em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-resources-g088-registration-guide__faq .page-resources-g088-registration-guide__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-resources-g088-registration-guide__faq .page-resources-g088-registration-guide__faq-item.active h3::after {
  transform: rotate(45deg);
}

.page-resources-g088-registration-guide__faq .page-resources-g088-registration-guide__faq-item p {
  color: #c0c0c0;
  font-size: 1.05em;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px solid rgba(255, 204, 0, 0.1);
  margin-top: 15px;
}

.page-resources-g088-registration-guide__faq .page-resources-g088-registration-guide__faq-item.active p {
  display: block;
}

.page-resources-g088-registration-guide__conclusion .page-resources-g088-registration-guide__outro-text {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #c0c0c0;
}

.page-resources-g088-registration-guide__conclusion .page-resources-g088-registration-guide__cta-button,
.page-resources-g088-registration-guide__conclusion .page-resources-g088-registration-guide__secondary-cta-button {
  margin-top: 20px;
}

.page-resources-g088-registration-guide .highlight {
  color: #FFCC00;
  font-weight: bold;
}

.page-resources-g088-registration-guide__small-button {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-g088-registration-guide__hero-title {
    font-size: 2.8em;
  }

  .page-resources-g088-registration-guide__section-title {
    font-size: 2.2em;
  }

  .page-resources-g088-registration-guide__feature-grid, .page-resources-g088-registration-guide__offer-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-resources-g088-registration-guide__step-item h3 {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-resources-g088-registration-guide__hero {
    padding: 80px 0;
  }

  .page-resources-g088-registration-guide__hero-title {
    font-size: 2.2em;
  }

  .page-resources-g088-registration-guide__hero-description {
    font-size: 1.1em;
  }

  .page-resources-g088-registration-guide__cta-button,
  .page-resources-g088-registration-guide__secondary-cta-button {
    font-size: 1em;
    padding: 12px 25px;
    margin: 10px auto;
    display: block;
    width: fit-content;
  }

  .page-resources-g088-registration-guide__secondary-cta-button {
    margin-left: auto;
  }

  .page-resources-g088-registration-guide__section {
    padding: 40px 0;
  }

  .page-resources-g088-registration-guide__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-g088-registration-guide__intro-text {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-resources-g088-registration-guide__feature-item h3,
  .page-resources-g088-registration-guide__offer-item h3 {
    font-size: 1.5em;
  }

  .page-resources-g088-registration-guide__step-item {
    padding: 30px;
  }

  .page-resources-g088-registration-guide__step-number {
    width: 50px;
    height: 50px;
    font-size: 2em;
  }

  .page-resources-g088-registration-guide__step-item h3 {
    font-size: 1.6em;
  }

  .page-resources-g088-registration-guide__step-item p {
    font-size: 0.95em;
  }

  .page-resources-g088-registration-guide__tip-box {
    padding: 20px;
  }

  .page-resources-g088-registration-guide__tip-box h3 {
    font-size: 1.5em;
  }

  .page-resources-g088-registration-guide__call-to-action {
    font-size: 1.1em;
    margin-top: 30px;
  }

  .page-resources-g088-registration-guide__faq .page-resources-g088-registration-guide__faq-item h3 {
    font-size: 1.3em;
  }

  .page-resources-g088-registration-guide__outro-text {
    font-size: 1.05em;
  }
}

@media (max-width: 480px) {
  .page-resources-g088-registration-guide__hero-title {
    font-size: 1.8em;
  }

  .page-resources-g088-registration-guide__section-title {
    font-size: 1.6em;
  }

  .page-resources-g088-registration-guide__feature-grid,
  .page-resources-g088-registration-guide__offer-grid {
    grid-template-columns: 1fr;
  }

  .page-resources-g088-registration-guide__cta-button,
  .page-resources-g088-registration-guide__secondary-cta-button {
    width: 100%;
    margin-left: 0;
  }

  .page-resources-g088-registration-guide__step-item h3 {
    font-size: 1.4em;
  }

  .page-resources-g088-registration-guide__step-number {
    width: 45px;
    height: 45px;
    font-size: 1.8em;
  }
}