.page-index-registration-process {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Text color for dark body background */
    background-color: transparent; /* Main content background is transparent to show body background */
}

/* Hero Section */
.page-index-registration-process__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden;
    background-color: #1a1a1a; /* Ensure hero has a background if image fails */
}

.page-index-registration-process__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-index-registration-process__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.3; /* Slightly dim hero image to ensure text readability */
}

.page-index-registration-process__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    margin: 0 auto;
    color: #ffffff;
}

.page-index-registration-process__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-index-registration-process__description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-index-registration-process__btn-primary,
.page-index-registration-process__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-index-registration-process__btn-primary {
    background-color: #26A9E0; /* Main brand color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-index-registration-process__btn-primary:hover {
    background-color: #1e87b8;
    border-color: #1e87b8;
}

.page-index-registration-process__btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-index-registration-process__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* General Section Styling */
.page-index-registration-process__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #26A9E0;
}

.page-index-registration-process__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Benefits Section */
.page-index-registration-process__benefits-section {
    padding: 60px 0;
    background-color: #f0f2f5; /* Lighter background for contrast */
    color: #333333; /* Dark text for light background */
}

.page-index-registration-process__benefits-section .page-index-registration-process__section-title {
    color: #333333;
}

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

.page-index-registration-process__benefit-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333333;
}

.page-index-registration-process__benefit-icon {
    width: 200px; /* Minimum size requirement */
    height: 200px;
    margin: 0 auto 20px auto;
    object-fit: contain;
    display: block;
}

.page-index-registration-process__benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #26A9E0;
}

/* Steps Section */
.page-index-registration-process__steps-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff;
}

.page-index-registration-process__steps-section .page-index-registration-process__section-title {
    color: #26A9E0;
}

.page-index-registration-process__intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #f0f0f0;
}

.page-index-registration-process__step-by-step {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.page-index-registration-process__step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.page-index-registration-process__step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #26A9E0;
    border: 3px solid #26A9E0;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: #0d0d0d;
}

.page-index-registration-process__step-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.page-index-registration-process__step-item p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-index-registration-process__step-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
    display: block; /* Ensure it behaves as a block element */
}

.page-index-registration-process__step-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.page-index-registration-process__step-list li {
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #26A9E0;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #f0f0f0;
}

.page-index-registration-process__step-list li strong {
    color: #26A9E0;
}

.page-index-registration-process__cta-block {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: rgba(38, 169, 224, 0.1); /* Semi-transparent brand color */
    border-radius: 10px;
}

.page-index-registration-process__cta-block p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Tips Section */
.page-index-registration-process__tips-section {
    padding: 60px 0;
    background-color: #f0f2f5; /* Light background */
    color: #333333;
}

.page-index-registration-process__tips-section .page-index-registration-process__section-title {
    color: #333333;
}

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

.page-index-registration-process__tip-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #26A9E0;
}

/* FAQ Section */
.page-index-registration-process__faq-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff;
}

.page-index-registration-process__faq-section .page-index-registration-process__section-title {
    color: #26A9E0;
}

.page-index-registration-process__faq-list {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-index-registration-process__faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.page-index-registration-process__faq-item[open] summary {
    background-color: rgba(38, 169, 224, 0.1);
    color: #26A9E0;
}

.page-index-registration-process__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    transition: background-color 0.3s ease, color 0.3s ease;
    list-style: none; /* For details summary */
}

.page-index-registration-process__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome/Safari */
}

.page-index-registration-process__faq-question::marker {
    display: none; /* Hide default marker for Firefox */
}

.page-index-registration-process__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #26A9E0;
}

.page-index-registration-process__faq-qtext {
    flex-grow: 1;
}

.page-index-registration-process__faq-toggle {
    font-size: 1.5rem;
    margin-left: 20px;
    color: #26A9E0;
}

.page-index-registration-process__faq-item[open] .page-index-registration-process__faq-toggle {
    color: #ffffff;
}

.page-index-registration-process__faq-answer {
    padding: 15px 20px 25px 20px;
    font-size: 1rem;
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-registration-process__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-index-registration-process__section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-index-registration-process {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-index-registration-process__hero-section {
        min-height: 400px;
        padding-bottom: 40px;
    }
    .page-index-registration-process__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-index-registration-process__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-index-registration-process__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-index-registration-process__btn-primary,
    .page-index-registration-process__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .page-index-registration-process__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-index-registration-process__benefits-section,
    .page-index-registration-process__steps-section,
    .page-index-registration-process__tips-section,
    .page-index-registration-process__faq-section {
        padding: 40px 0;
    }
    .page-index-registration-process__container {
        padding: 0 15px;
    }

    .page-index-registration-process__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-index-registration-process__step-item {
        padding: 0 15px;
    }
    .page-index-registration-process__step-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-index-registration-process__step-list {
        max-width: 100%;
        padding: 0 15px;
    }

    .page-index-registration-process__tips-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-index-registration-process__faq-question {
        font-size: 1rem;
        padding: 15px 15px;
    }
    .page-index-registration-process__faq-answer {
        padding: 10px 15px 20px 15px;
    }
    .page-index-registration-process__cta-block {
        padding: 30px 15px;
    }

    /* Enforce image and container 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-content,
    .page-index-registration-process__step-item,
    .page-index-registration-process__cta-block,
    .page-index-registration-process__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-index-registration-process__hero-section {
      padding-top: 10px !important; /* body already handles --header-offset */
    }
}

/* Video specific styles (even if not used on this page, good for consistency) */
.page-index-registration-process video,
.page-index-registration-process__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-index-registration-process__video-section,
.page-index-registration-process__video-container,
.page-index-registration-process__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-index-registration-process video,
  .page-index-registration-process__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-index-registration-process__video-section,
  .page-index-registration-process__video-container,
  .page-index-registration-process__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-index-registration-process__video-section {
    padding-top: 10px !important;
  }
  .page-index-registration-process__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}