/* style/index-registration-process.css */
.page-index-registration-process-hero {
  background: linear-gradient(135deg, #0A246A 0%, #304E8A 100%); /* Adjusted gradient for better depth */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.page-index-registration-process-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-registration-process-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
  color: #FFD700; /* Use auxiliary color for highlight */
}

.page-index-registration-process-hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  color: #E0E0E0;
}

.page-index-registration-process-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for buttons */
  color: #0A246A; /* Primary color for button text */
  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;
}

.page-index-registration-process-button:hover {
  background-color: #E6C200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-index-registration-process-hero-button {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-index-registration-process-section {
  padding: 60px 0;
  background-color: #F8F8F8;
  color: #333333;
}

.page-index-registration-process-section:nth-of-type(even) {
  background-color: #FFFFFF;
}

.page-index-registration-process-section-title {
  font-size: 2.5em;
  color: #0A246A; /* Primary color for main titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-index-registration-process-section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-index-registration-process-highlight {
  color: #FFD700; /* Auxiliary color for highlights */
}

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

.page-index-registration-process-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-index-registration-process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-index-registration-process-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain; /* Ensure icons fit without distortion */
}

.page-index-registration-process-card-title {
  font-size: 1.5em;
  color: #0A246A;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-registration-process-card-text {
  font-size: 1em;
  color: #666666;
  line-height: 1.7;
  flex-grow: 1;
}

.page-index-registration-process-card-text a {
  color: #0A246A;
  text-decoration: none;
  font-weight: bold;
}

.page-index-registration-process-card-text a:hover {
  text-decoration: underline;
}

.page-index-registration-process-step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
}

.page-index-registration-process-step-item:last-child {
  margin-bottom: 0;
}

.page-index-registration-process-step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700; /* Auxiliary color for step numbers */
  margin-right: 30px;
  background-color: #0A246A;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-registration-process-step-content {
  flex-grow: 1;
}

.page-index-registration-process-step-title {
  font-size: 1.8em;
  color: #0A246A;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-registration-process-step-text {
  font-size: 1.05em;
  color: #444444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-index-registration-process-step-text a {
  color: #0A246A;
  text-decoration: none;
  font-weight: bold;
}

.page-index-registration-process-step-text a:hover {
  text-decoration: underline;
}

.page-index-registration-process-step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-registration-process-list {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 20px;
  color: #444444;
}

.page-index-registration-process-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-index-registration-process-list li strong {
  color: #0A246A;
}

.page-index-registration-process-small-button {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-index-registration-process-notes-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 30px;
}

.page-index-registration-process-notes-list li {
  background-color: #FFF3E0; /* Light background for notes */
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #333333;
}

.page-index-registration-process-notes-list li strong {
  color: #0A246A;
}

.page-index-registration-process-after-registration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-index-registration-process-after-registration-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-index-registration-process-after-registration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-index-registration-process-after-registration-card-title {
  font-size: 1.4em;
  color: #0A246A;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-registration-process-after-registration-card-text {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-index-registration-process-after-registration-card-text a {
  color: #0A246A;
  text-decoration: none;
  font-weight: bold;
}

.page-index-registration-process-after-registration-card-text a:hover {
  text-decoration: underline;
}

.page-index-registration-process-faq-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-index-registration-process-faq-question {
  font-size: 1.25em;
  color: #0A246A;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-index-registration-process-faq-question a {
  color: #0A246A;
  text-decoration: none;
  font-weight: bold;
}

.page-index-registration-process-faq-question a:hover {
  text-decoration: underline;
}

.page-index-registration-process-faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-index-registration-process-faq-answer a {
  color: #0A246A;
  text-decoration: none;
  font-weight: bold;
}

.page-index-registration-process-faq-answer a:hover {
  text-decoration: underline;
}

.page-index-registration-process-cta {
  background: linear-gradient(135deg, #0A246A 0%, #304E8A 100%);
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-index-registration-process-cta .page-index-registration-process-section-title {
  color: #FFD700;
}

.page-index-registration-process-cta .page-index-registration-process-section-description {
  color: #E0E0E0;
  margin-bottom: 50px;
}

.page-index-registration-process-cta-button {
  padding: 20px 45px;
  font-size: 1.3em;
  background-color: #FFD700;
  color: #0A246A;
  border-radius: 10px;
}

.page-index-registration-process-cta-button:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-registration-process-hero-title {
    font-size: 2.8em;
  }
  .page-index-registration-process-section-title {
    font-size: 2em;
  }
  .page-index-registration-process-step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-index-registration-process-step-number {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-index-registration-process-hero {
    padding: 60px 15px;
  }
  .page-index-registration-process-hero-title {
    font-size: 2.2em;
  }
  .page-index-registration-process-hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-registration-process-section {
    padding: 40px 0;
  }
  .page-index-registration-process-section-title {
    font-size: 1.8em;
  }
  .page-index-registration-process-section-description {
    font-size: 1em;
  }
  .page-index-registration-process-card {
    padding: 25px;
  }
  .page-index-registration-process-card-icon {
    width: 60px;
    height: 60px;
  }
  .page-index-registration-process-card-title {
    font-size: 1.3em;
  }
  .page-index-registration-process-step-title {
    font-size: 1.5em;
  }
  .page-index-registration-process-step-number {
    font-size: 2em;
    width: 60px;
    height: 60px;
  }
  .page-index-registration-process-after-registration-card-title {
    font-size: 1.2em;
  }
  .page-index-registration-process-cta {
    padding: 60px 15px;
  }
  .page-index-registration-process-cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-registration-process-hero-title {
    font-size: 1.8em;
  }
  .page-index-registration-process-hero-subtitle {
    font-size: 0.95em;
  }
  .page-index-registration-process-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-registration-process-section-title {
    font-size: 1.5em;
  }
  .page-index-registration-process-step-title {
    font-size: 1.3em;
  }
  .page-index-registration-process-faq-question {
    font-size: 1.1em;
  }
  .page-index-registration-process-faq-answer {
    font-size: 0.9em;
  }
}