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

/* Base styles for the page content */
.page-index-user-registration-process {
    font-family: 'Arial', sans-serif;
    color: #F5F5F5; /* Light text on dark background for readability */
    background-color: #0A0A0A; /* Main dark background */
    line-height: 1.6;
}

.page-index-user-registration-process__hero {
    background: linear-gradient(135deg, #0A0A0A, #1A1A1A); /* Subtle gradient for depth */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.page-index-user-registration-process__hero-content {
    max-width: 900px;
    z-index: 2;
}

.page-index-user-registration-process__title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-index-user-registration-process__subtitle {
    font-size: 1.2em;
    color: #CCCCCC;
    margin-bottom: 30px;
}

.page-index-user-registration-process__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    z-index: 1;
}

.page-index-user-registration-process__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-index-user-registration-process__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-index-user-registration-process__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A0A0A; /* Dark text on gold */
    border: 2px solid #FFD700;
}

.page-index-user-registration-process__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

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

.page-index-user-registration-process__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A0A0A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.page-index-user-registration-process__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.page-index-user-registration-process__section-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

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

.page-index-user-registration-process__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-index-user-registration-process__text strong {
    color: #FFD700;
}

.page-index-user-registration-process__link {
    color: #FFD700;
    text-decoration: none;
    border-bottom: 1px solid #FFD700;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-index-user-registration-process__link:hover {
    color: #e6c200;
    border-color: #e6c200;
}

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

.page-index-user-registration-process__feature-item {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-user-registration-process__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.page-index-user-registration-process__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-index-user-registration-process__feature-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-index-user-registration-process__step {
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.page-index-user-registration-process__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 25px;
    position: relative;
    padding-left: 40px;
}

.page-index-user-registration-process__step-title::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: -5px;
    background-color: #FFD700;
    color: #0A0A0A;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
}

.page-index-user-registration-process__section--registration-steps {
    counter-reset: step-counter; /* Initialize counter for steps */
}

.page-index-user-registration-process__list {
    list-style: none; /* Remove default bullet */
    padding-left: 0;
    margin-bottom: 20px;
}

.page-index-user-registration-process__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #E0E0E0;
}

.page-index-user-registration-process__list li::before {
    content: '✓'; /* Custom bullet point */
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2em;
}

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

.page-index-user-registration-process__ordered-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-index-user-registration-process__ordered-list li::before {
    content: counter(ordered-list-counter) ".";
    counter-increment: ordered-list-counter;
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 1.1em;
    width: 25px;
    text-align: right;
}

.page-index-user-registration-process__section--after-registration {
    counter-reset: ordered-list-counter; /* Initialize counter for ordered list */
}

.page-index-user-registration-process__sub-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 10px;
}

.page-index-user-registration-process__sub-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    color: #C0C0C0;
}

.page-index-user-registration-process__sub-list li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.page-index-user-registration-process__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-index-user-registration-process__image--step {
    max-height: 350px; /* Limit height for step images */
    object-fit: contain; /* Ensure image fits without cropping */
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-color: #000; /* Dark background for step images */
    padding: 10px;
}

.page-index-user-registration-process__faq-item {
    background-color: #1A1A1A;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-index-user-registration-process__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer; /* Indicate it's interactive */
}

.page-index-user-registration-process__faq-question:hover {
    color: #e6c200;
}

.page-index-user-registration-process__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

/* Keyword styling for emphasis */
.page-index-user-registration-process .keyword {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-index-user-registration-process__title {
        font-size: 2em;
    }

    .page-index-user-registration-process__subtitle {
        font-size: 1em;
    }

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

    .page-index-user-registration-process__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-index-user-registration-process__step {
        padding: 30px 20px;
    }

    .page-index-user-registration-process__step-title {
        font-size: 1.5em;
        padding-left: 35px;
    }
    
    .page-index-user-registration-process__step-title::before {
        width: 25px;
        height: 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-index-user-registration-process__hero {
        padding: 60px 15px;
    }

    .page-index-user-registration-process__title {
        font-size: 1.8em;
    }

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

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

    .page-index-user-registration-process__btn {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .page-index-user-registration-process__cta-buttons .page-index-user-registration-process__btn {
        margin-left: auto;
        margin-right: auto;
    }
}