/* style/registration-guide.css */
.page-registration-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-registration-guide__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-registration-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-registration-guide__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e9ecef;
}

.page-registration-guide__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #333;
  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;
  border: none;
  cursor: pointer;
}

.page-registration-guide__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-registration-guide__cta-button--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-registration-guide__cta-button--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.page-registration-guide__cta-button--outline {
  background-color: transparent;
  color: #ffc107;
  border: 2px solid #ffc107;
}

.page-registration-guide__cta-button--outline:hover {
  background-color: #ffc107;
  color: #333;
}

.page-registration-guide__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-registration-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
}

.page-registration-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-registration-guide__section {
  padding: 60px 0;
}

.page-registration-guide__section-title {
  font-size: 2.2em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-registration-guide__section-intro {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555;
}

.page-registration-guide__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-registration-guide__benefit-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-guide__benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-registration-guide__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  color: #007bff; /* Fallback for SVG icons */
}

.page-registration-guide__benefit-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-registration-guide__benefit-text {
  font-size: 0.95em;
  color: #666;
}

.page-registration-guide__text-center {
  text-align: center;
  margin-top: 40px;
}

.page-registration-guide__steps-section {
  background-color: #e9f5ff;
}

.page-registration-guide__step-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.page-registration-guide__step-item:last-child {
  margin-bottom: 0;
}

.page-registration-guide__step-item--reverse {
  flex-direction: row-reverse;
}

.page-registration-guide__step-content {
  flex: 1;
}

.page-registration-guide__step-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
}

.page-registration-guide__step-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-registration-guide__step-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-registration-guide__step-text {
  font-size: 1.05em;
  color: #444;
  margin-bottom: 15px;
}

.page-registration-guide__step-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-registration-guide__step-list 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="none" stroke="%23ffc107" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #555;
}

.page-registration-guide__notes-list {
  list-style: none;
  padding-left: 0;
  max-width: 900px;
  margin: 40px auto 0;
}

.page-registration-guide__notes-list 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="none" stroke="%23007bff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="16" x2="12" y2="12"></line><line x1="12" y1="8" x2="12.01" y2="8"></line></svg>') no-repeat left 5px;
  background-size: 20px;
  padding-left: 35px;
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #444;
}

.page-registration-guide__notes-list li strong {
  color: #007bff;
}

.page-registration-guide__faq-section {
  background-color: #f0f8ff;
}

.page-registration-guide__faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-registration-guide__faq-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.page-registration-guide__faq-item:hover {
  transform: translateY(-3px);
}

.page-registration-guide__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-registration-guide__faq-answer {
  font-size: 0.95em;
  color: #555;
}

.page-registration-guide__faq-image {
  display: block;
  margin: 40px auto 0;
  max-width: 300px;
  height: auto;
}

.page-registration-guide__cta-banner-section {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-registration-guide__cta-banner-content {
  position: relative;
  z-index: 1;
}

.page-registration-guide__cta-banner-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #fff;
}

.page-registration-guide__cta-banner-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e9ecef;
}

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

.page-registration-guide__cta-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-registration-guide__hero-title {
    font-size: 2.2em;
  }
  .page-registration-guide__section-title {
    font-size: 1.8em;
  }
  .page-registration-guide__step-item {
    flex-direction: column;
    gap: 20px;
  }
  .page-registration-guide__step-item--reverse {
    flex-direction: column;
  }
  .page-registration-guide__step-image-wrapper {
    max-width: 100%;
  }
  .page-registration-guide__cta-banner-title {
    font-size: 2em;
  }
  .page-registration-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-registration-guide__cta-button {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-registration-guide__hero-title {
    font-size: 1.8em;
  }
  .page-registration-guide__hero-description {
    font-size: 1em;
  }
  .page-registration-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-registration-guide__section {
    padding: 40px 0;
  }
  .page-registration-guide__section-title {
    font-size: 1.6em;
  }
  .page-registration-guide__benefits-grid, .page-registration-guide__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-registration-guide__step-title {
    font-size: 1.5em;
  }
  .page-registration-guide__cta-banner-title {
    font-size: 1.8em;
  }
  .page-registration-guide__cta-button {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-registration-guide__hero-section {
    padding: 60px 0;
  }
  .page-registration-guide__hero-title {
    font-size: 1.5em;
  }
  .page-registration-guide__hero-description {
    font-size: 0.9em;
  }
  .page-registration-guide__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-registration-guide__section-title {
    font-size: 1.4em;
  }
  .page-registration-guide__section-intro {
    font-size: 0.9em;
  }
  .page-registration-guide__benefit-title {
    font-size: 1.2em;
  }
  .page-registration-guide__step-title {
    font-size: 1.3em;
  }
  .page-registration-guide__faq-question {
    font-size: 1.1em;
  }
  .page-registration-guide__cta-banner-title {
    font-size: 1.5em;
  }
}