/* style/index-registration-process.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --accent-color: #EA7C07;
  --dark-bg-color: #121212;
  --light-text-color: #ffffff;
  --dark-text-color: #333333;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
}

.page-index-registration-process {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--light-text-color); /* Default text color for dark body background */
  background-color: var(--dark-bg-color);
}

.page-index-registration-process__dark-bg {
  background-color: var(--dark-bg-color);
  color: var(--light-text-color);
}

.page-index-registration-process__light-bg {
  background-color: var(--secondary-color);
  color: var(--dark-text-color);
}

.page-index-registration-process__section {
  padding: 80px 0;
  text-align: center;
}

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

.page-index-registration-process__section-title {
  font-size: 3em;
  margin-bottom: 30px;
  font-weight: bold;
  color: var(--primary-color);
}

.page-index-registration-process__light-bg .page-index-registration-process__section-title {
  color: var(--primary-color);
}

.page-index-registration-process__dark-bg .page-index-registration-process__section-title {
  color: var(--secondary-color);
}

.page-index-registration-process__text-block {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-index-registration-process__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 100px 0;
  min-height: 600px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-index-registration-process__hero-content {
  flex: 1;
  padding-right: 40px;
  z-index: 1;
  max-width: 700px;
  margin-left: auto;
  padding-left: 20px;
}

.page-index-registration-process__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--secondary-color);
}

.page-index-registration-process__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
  color: var(--light-text-color);
}

.page-index-registration-process__hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-registration-process__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  max-width: 50%;
}

.page-index-registration-process__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.page-index-registration-process__btn-primary,
.page-index-registration-process__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-index-registration-process__btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.page-index-registration-process__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-index-registration-process__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-index-registration-process__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-index-registration-process__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Features Grid */
.page-index-registration-process__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-registration-process__feature-card {
  background-color: var(--card-bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
  color: var(--dark-text-color);
}

.page-index-registration-process__feature-card:hover {
  transform: translateY(-10px);
}

.page-index-registration-process__feature-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  max-width: 100%;
  border-radius: 5px;
}

.page-index-registration-process__feature-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-index-registration-process__feature-description {
  font-size: 1em;
  line-height: 1.6;
}

/* Steps Section */
.page-index-registration-process__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 50px;
  text-align: left;
}

.page-index-registration-process__step-item {
  background-color: var(--card-bg-dark);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--light-text-color);
}

.page-index-registration-process__step-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-index-registration-process__step-title {
  font-size: 2em;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-index-registration-process__step-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-index-registration-process__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: auto; /* Push image to bottom if content is shorter */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-registration-process__cta-block {
  margin-top: 60px;
  background-color: var(--primary-color);
  padding: 40px;
  border-radius: 10px;
  color: var(--secondary-color);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-registration-process__cta-text {
  font-size: 1.5em;
  margin-bottom: 30px;
  font-weight: bold;
}

/* List styling */
.page-index-registration-process__list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-index-registration-process__list-item {
  background-color: var(--card-bg-light);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-size: 1.1em;
  line-height: 1.7;
  color: var(--dark-text-color);
}

.page-index-registration-process__list-item strong {
  color: var(--primary-color);
}

/* FAQ Section */
.page-index-registration-process__faq-container {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-index-registration-process__faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--card-bg-dark);
  color: var(--light-text-color);
}

.page-index-registration-process__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

.page-index-registration-process__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-index-registration-process__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-index-registration-process__faq-item.active .page-index-registration-process__faq-toggle {
  transform: rotate(45deg);
}

.page-index-registration-process__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-index-registration-process__faq-item.active .page-index-registration-process__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to accommodate content */
  padding: 20px;
  padding-top: 0;
}

.page-index-registration-process__faq-answer p {
  margin: 0;
  font-size: 1.1em;
  line-height: 1.6;
  color: var(--light-text-color);
}

.page-index-registration-process__final-cta {
  padding: 60px 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-registration-process__hero-section {
    flex-direction: column;
    text-align: center;
    padding: 80px 0;
  }

  .page-index-registration-process__hero-content {
    padding-right: 0;
    max-width: 100%;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-index-registration-process__hero-image-wrapper {
    max-width: 80%;
  }

  .page-index-registration-process__hero-title {
    font-size: 3em;
  }

  .page-index-registration-process__hero-description {
    font-size: 1.1em;
  }

  .page-index-registration-process__steps-container {
    grid-template-columns: 1fr;
  }

  .page-index-registration-process__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-registration-process__hero-section {
    padding: 60px 0;
  }

  .page-index-registration-process__hero-title {
    font-size: 2.5em;
  }

  .page-index-registration-process__hero-description {
    font-size: 1em;
  }

  .page-index-registration-process__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-registration-process__btn-primary,
  .page-index-registration-process__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-registration-process__hero-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-index-registration-process__section {
    padding: 40px 0;
  }

  .page-index-registration-process__section-title {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .page-index-registration-process__text-block {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-index-registration-process__features-grid {
    grid-template-columns: 1fr;
  }

  .page-index-registration-process__feature-card {
    padding: 25px;
  }

  .page-index-registration-process__feature-title {
    font-size: 1.5em;
  }

  .page-index-registration-process__step-item {
    padding: 25px;
  }

  .page-index-registration-process__step-title {
    font-size: 1.6em;
  }

  .page-index-registration-process__step-description {
    font-size: 1em;
  }

  .page-index-registration-process__cta-block {
    padding: 30px;
  }

  .page-index-registration-process__cta-text {
    font-size: 1.2em;
  }

  .page-index-registration-process__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-index-registration-process__faq-answer {
    padding: 0 15px;
  }

  .page-index-registration-process__faq-item.active .page-index-registration-process__faq-answer {
    padding: 15px;
    padding-top: 0;
  }

  /* Mobile image responsiveness */
  .page-index-registration-process img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-index-registration-process__section,
  .page-index-registration-process__card,
  .page-index-registration-process__container,
  .page-index-registration-process__hero-section,
  .page-index-registration-process__hero-image-wrapper,
  .page-index-registration-process__steps-container,
  .page-index-registration-process__step-item,
  .page-index-registration-process__cta-block,
  .page-index-registration-process__faq-container,
  .page-index-registration-process__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-index-registration-process__hero-section {
    padding-top: var(--header-offset, 120px) !important;
  }
}