.page-index-registration-process {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --bg-light: #f5f5f5;
  --bg-dark: #2a0a0a;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
}

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

.page-index-registration-process .text-center {
  text-align: center;
}

/* Hero Section */
.page-index-registration-process .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 100%); /* Darker background for text contrast */
  color: var(--text-color-light);
}

.page-index-registration-process .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-registration-process .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-registration-process .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-registration-process .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-registration-process .hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-registration-process .hero-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color-light);
}

.page-index-registration-process .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-index-registration-process .cta-button:hover {
  background: #FFC107; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-index-registration-process section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.page-index-registration-process h2 {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-registration-process h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  border-radius: 2px;
}

.page-index-registration-process h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index-registration-process p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

/* Section Intro */
.page-index-registration-process .section-intro {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-index-registration-process .section-intro h2 {
  color: var(--primary-color);
}

.page-index-registration-process .section-intro h3 {
  color: var(--primary-color);
}

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

.page-index-registration-process .intro-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-registration-process .intro-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-registration-process .intro-item .feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

/* Registration Guide */
.page-index-registration-process .section-registration-guide {
  background-color: var(--bg-light);
}

.page-index-registration-process .guide-steps {
  margin-top: 50px;
}

.page-index-registration-process .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index-registration-process .step-item .step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-registration-process .step-item h3 {
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-index-registration-process .step-item ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
}

.page-index-registration-process .step-item ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1.05em;
}

.page-index-registration-process .step-item ul li::before {
  content: '✓';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-registration-process .step-item .guide-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Benefits Section */
.page-index-registration-process .section-benefits {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-index-registration-process .section-benefits h2 {
  color: var(--primary-color);
}

.page-index-registration-process .section-benefits h3 {
  color: var(--primary-color);
}

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

.page-index-registration-process .benefit-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-registration-process .benefit-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-registration-process .benefit-item .benefit-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Deposit Guide */
.page-index-registration-process .section-deposit-guide ol {
  list-style: decimal;
  padding-left: 30px;
  margin-top: 20px;
}

.page-index-registration-process .section-deposit-guide ol li {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-index-registration-process .section-deposit-guide ol li strong {
  color: var(--secondary-color);
}

/* Promotions Section */
.page-index-registration-process .section-promotions {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-index-registration-process .section-promotions h2 {
  color: var(--primary-color);
}

.page-index-registration-process .section-promotions h3 {
  color: var(--primary-color);
}

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

.page-index-registration-process .promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-registration-process .promo-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-registration-process .promo-card .promo-image {
  width: 100%;
  max-width: 350px;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-registration-process .promo-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-registration-process .promo-card h3 a:hover {
  color: #FFC107;
}

.page-index-registration-process .btn-promo {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-registration-process .btn-promo:hover {
  background: #FFC107;
  transform: translateY(-2px);
}

.page-index-registration-process .promo-note {
  font-size: 0.9em;
  text-align: center;
  margin-top: 40px;
  opacity: 0.8;
}

/* Security & Support */
.page-index-registration-process .section-security-support {
  background-color: var(--bg-light);
}

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

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

.page-index-registration-process .security-item:hover {
  transform: translateY(-5px);
}

.page-index-registration-process .security-item .security-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index-registration-process .contact-info {
  background-color: var(--secondary-color);
  color: var(--text-color-light);
  padding: 30px;
  border-radius: 10px;
  margin-top: 50px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-index-registration-process .contact-info p {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-index-registration-process .contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-registration-process .contact-info a:hover {
  color: #FFC107;
}

/* FAQ Section */
.page-index-registration-process .section-faq {
  background-color: var(--bg-light);
}

.page-index-registration-process .faq-list {
  margin-top: 40px;
}

.page-index-registration-process .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

.page-index-registration-process .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-index-registration-process .faq-question:hover {
  background: #f0f0f0;
}

.page-index-registration-process .faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--text-color-dark);
}

.page-index-registration-process .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.page-index-registration-process .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #f9f9f9;
  color: var(--text-color-dark);
}

.page-index-registration-process .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding: 20px;
}

/* Blog News Section */
.page-index-registration-process .section-blog-news {
  background-color: var(--bg-dark);
  color: var(--text-color-light);
}

.page-index-registration-process .section-blog-news h2 {
  color: var(--primary-color);
}

.page-index-registration-process .section-blog-news h3 {
  color: var(--primary-color);
}

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

.page-index-registration-process .blog-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-index-registration-process .blog-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-index-registration-process .blog-card .blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-registration-process .blog-card h3 {
  margin-bottom: 10px;
}

.page-index-registration-process .blog-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index-registration-process .blog-card h3 a:hover {
  color: #FFC107;
}

.page-index-registration-process .blog-card p {
  font-size: 0.95em;
  line-height: 1.5;
  flex-grow: 1;
}

.page-index-registration-process .blog-card .blog-date {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
  display: block;
}

.page-index-registration-process .blog-card .read-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-registration-process .blog-card .read-more:hover {
  color: #FFC107;
}

/* Quick Links Section */
.page-index-registration-process .section-quick-links {
  background-color: var(--bg-light);
}

.page-index-registration-process .quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-index-registration-process .quick-link-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: var(--secondary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-registration-process .quick-link-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-index-registration-process .quick-link-item .link-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.page-index-registration-process .quick-link-item span {
  font-weight: bold;
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-registration-process .hero-content h1 {
    font-size: 2.5em;
  }
  .page-index-registration-process .hero-content p {
    font-size: 1.1em;
  }
  .page-index-registration-process h2 {
    font-size: 2em;
  }
  .page-index-registration-process h3 {
    font-size: 1.6em;
  }
  .page-index-registration-process .promo-card .promo-image, 
  .page-index-registration-process .blog-card .blog-image {
    height: 180px;
  }
  .page-index-registration-process .quick-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-registration-process .hero-section {
    padding: 40px 15px;
  }
  .page-index-registration-process .hero-content h1 {
    font-size: 2em;
  }
  .page-index-registration-process .hero-content p {
    font-size: 1em;
  }
  .page-index-registration-process .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-index-registration-process section {
    padding: 50px 0;
  }
  .page-index-registration-process h2 {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-index-registration-process h3 {
    font-size: 1.4em;
  }
  .page-index-registration-process .intro-item, 
  .page-index-registration-process .benefit-item, 
  .page-index-registration-process .security-item, 
  .page-index-registration-process .promo-card, 
  .page-index-registration-process .blog-card, 
  .page-index-registration-process .quick-link-item {
    padding: 20px;
  }
  .page-index-registration-process .step-item {
    padding: 20px;
  }
  .page-index-registration-process .step-item .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
  .page-index-registration-process .promo-card .promo-image, 
  .page-index-registration-process .blog-card .blog-image {
    height: 160px;
  }
  .page-index-registration-process .faq-question {
    padding: 12px 15px;
  }
  .page-index-registration-process .faq-question h3 {
    font-size: 1em;
  }
  .page-index-registration-process .faq-toggle {
    font-size: 20px;
  }
  .page-index-registration-process .faq-item.active .faq-answer {
    padding: 15px;
  }
  .page-index-registration-process .quick-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .page-index-registration-process .quick-link-item .link-icon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .page-index-registration-process .hero-content h1 {
    font-size: 1.8em;
  }
  .page-index-registration-process h2 {
    font-size: 1.6em;
  }
  .page-index-registration-process .intro-grid, 
  .page-index-registration-process .benefits-grid, 
  .page-index-registration-process .promo-cards, 
  .page-index-registration-process .security-support-grid, 
  .page-index-registration-process .blog-grid {
    grid-template-columns: 1fr;
  }
  .page-index-registration-process .quick-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}