/* style/index-registration-process-detailed.css */
/* Body background is #0a0a0a (dark), so text should be light (#ffffff) */

.page-index-registration-process-detailed {
    color: #ffffff; /* Default text color for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #0a0a0a; /* Ensure consistency with body background */
}

.page-index-registration-process-detailed__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image above text */
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    overflow: hidden; /* Prevent content overflow */
}

.page-index-registration-process-detailed__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image wrapper */
    margin-bottom: 30px; /* Space between image and text */
}

.page-index-registration-process-detailed__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-index-registration-process-detailed__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1; /* Ensure text is above any background effects */
}

.page-index-registration-process-detailed__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Example clamp for responsive H1 */
}

.page-index-registration-process-detailed__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-index-registration-process-detailed__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-index-registration-process-detailed__btn-primary,
.page-index-registration-process-detailed__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    max-width: 100%; /* Ensure button responsiveness */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

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

.page-index-registration-process-detailed__btn-primary:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

.page-index-registration-process-detailed__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-index-registration-process-detailed__btn-secondary:hover {
    background-color: rgba(38, 169, 224, 0.1);
    color: #ffffff;
}

.page-index-registration-process-detailed__section {
    padding: 60px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
}

.page-index-registration-process-detailed__container {
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-index-registration-process-detailed__section-title {
    font-size: 2.2em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-index-registration-process-detailed__text-block {
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-index-registration-process-detailed__list,
.page-index-registration-process-detailed__steps-list,
.page-index-registration-process-detailed__error-list,
.page-index-registration-process-detailed__benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-index-registration-process-detailed__list-item,
.page-index-registration-process-detailed__step-item,
.page-index-registration-process-detailed__error-item,
.page-index-registration-process-detailed__benefits-item {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for list items */
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 5px solid #26A9E0;
}

.page-index-registration-process-detailed__list-title,
.page-index-registration-process-detailed__step-title,
.page-index-registration-process-detailed__error-title,
.page-index-registration-process-detailed__benefits-title {
    font-size: 1.4em;
    color: #26A9E0; /* Brand color for titles */
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-registration-process-detailed__list-item p,
.page-index-registration-process-detailed__step-item p,
.page-index-registration-process-detailed__error-item p,
.page-index-registration-process-detailed__benefits-item p {
    color: #f0f0f0;
}

.page-index-registration-process-detailed__sub-list {
    list-style: disc;
    margin-left: 20px;
    color: #f0f0f0;
}

.page-index-registration-process-detailed__sub-list li {
    margin-bottom: 5px;
}

.page-index-registration-process-detailed__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-index-registration-process-detailed__video-container {
    width: 100%;
    max-width: 1000px; /* Max width for video container */
    margin: 40px auto;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: #000;
}

.page-index-registration-process-detailed__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer; /* Indicate clickable video */
}

.page-index-registration-process-detailed__cta-buttons--center {
    margin-top: 40px;
}

.page-index-registration-process-detailed__btn-large {
    padding: 18px 40px;
    font-size: 1.1em;
}

.page-index-registration-process-detailed__faq-list {
    margin-top: 30px;
}

.page-index-registration-process-detailed__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border-left: 5px solid #EA7C07; /* Login color for FAQ */
}

.page-index-registration-process-detailed__faq-item summary {
    list-style: none; /* Hide default marker */
}

.page-index-registration-process-detailed__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

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

.page-index-registration-process-detailed__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.12);
}

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

.page-index-registration-process-detailed__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #EA7C07;
}

.page-index-registration-process-detailed__faq-answer {
    padding: 15px 25px 20px;
    color: #f0f0f0;
    background-color: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-index-registration-process-detailed__cta-section {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #1a1a1a; /* Slightly different dark background for CTA */
}

.page-index-registration-process-detailed__cta-content {
    max-width: 800px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-index-registration-process-detailed__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-index-registration-process-detailed__section-title {
        font-size: 1.8em;
    }
    .page-index-registration-process-detailed__list-title,
    .page-index-registration-process-detailed__step-title,
    .page-index-registration-process-detailed__error-title,
    .page-index-registration-process-detailed__benefits-title {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .page-index-registration-process-detailed__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* Small top padding for mobile */
    }

    .page-index-registration-process-detailed__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .page-index-registration-process-detailed__description {
        font-size: 1em;
    }

    .page-index-registration-process-detailed__cta-buttons {
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 15px;
    }

    .page-index-registration-process-detailed__btn-primary,
    .page-index-registration-process-detailed__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-index-registration-process-detailed__section,
    .page-index-registration-process-detailed__cta-section {
        padding: 30px 15px;
    }

    .page-index-registration-process-detailed__container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-index-registration-process-detailed__section-title {
        font-size: 1.6em;
        margin-bottom: 30px;
    }

    .page-index-registration-process-detailed img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-index-registration-process-detailed__video-container {
        max-width: 100% !important;
        width: 100% !important;
        padding-bottom: 56.25% !important; /* Ensure aspect ratio */
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .page-index-registration-process-detailed__video {
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important; /* Occupy full container height */
        display: block !important;
    }

    .page-index-registration-process-detailed__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-index-registration-process-detailed__faq-answer {
        padding: 10px 20px 15px;
    }
}