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

:root {
    --bem88-win-primary: #11A84E;
    --bem88-win-secondary: #22C768;
    --bem88-win-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --bem88-win-card-bg: #11271B;
    --bem88-win-background: #08160F;
    --bem88-win-text-main: #F2FFF6;
    --bem88-win-text-secondary: #A7D9B8;
    --bem88-win-border: #2E7A4E;
    --bem88-win-glow: #57E38D;
    --bem88-win-gold: #F2C14E;
    --bem88-win-divider: #1E3A2A;
    --bem88-win-deep-green: #0A4B2C;
}

.page-index-registration-process {
    font-family: 'Arial', sans-serif;
    background-color: var(--bem88-win-background); /* Dark background */
    color: var(--bem88-win-text-main); /* Light text for contrast */
    line-height: 1.6;
}

.page-index-registration-process__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden;
}

.page-index-registration-process__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-index-registration-process__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.8);
}

.page-index-registration-process__hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
    margin-top: -150px; /* Pull content slightly over image for visual flow */
    background: rgba(8, 22, 15, 0.85); /* Slightly transparent dark background */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--bem88-win-border);
}

.page-index-registration-process__main-title {
    color: var(--bem88-win-text-main);
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-index-registration-process__hero-description {
    color: var(--bem88-win-text-secondary);
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-registration-process__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-index-registration-process__btn-primary {
    background: var(--bem88-win-button-gradient);
    color: var(--bem88-win-text-main);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-registration-process__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.page-index-registration-process__btn-secondary {
    background: var(--bem88-win-card-bg);
    color: var(--bem88-win-primary);
    border: 2px solid var(--bem88-win-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-registration-process__btn-secondary:hover {
    background: var(--bem88-win-primary);
    color: var(--bem88-win-text-main);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

.page-index-registration-process__section-title {
    color: var(--bem88-win-gold);
    font-size: clamp(1.8em, 3vw, 2.8em);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-registration-process__text-block {
    color: var(--bem88-win-text-secondary);
    font-size: 1.05em;
    margin-bottom: 15px;
    text-align: justify;
}

.page-index-registration-process__introduction-section,
.page-index-registration-process__conclusion-section {
    padding: 60px 0;
    background-color: var(--bem88-win-background);
}

.page-index-registration-process__steps-section {
    background-color: var(--bem88-win-deep-green);
    padding: 80px 0;
}

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

.page-index-registration-process__step-card {
    background: var(--bem88-win-card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--bem88-win-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-registration-process__step-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    border: 1px solid var(--bem88-win-border);
}

.page-index-registration-process__step-title {
    color: var(--bem88-win-primary);
    font-size: 1.6em;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-registration-process__step-description {
    color: var(--bem88-win-text-secondary);
    font-size: 1em;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-index-registration-process__important-notes-section {
    padding: 80px 0;
    background-color: var(--bem88-win-background);
}

.page-index-registration-process__notes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-index-registration-process__notes-item {
    background: var(--bem88-win-card-bg);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid var(--bem88-win-gold);
}

.page-index-registration-process__notes-heading {
    color: var(--bem88-win-gold);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-index-registration-process__benefits-section {
    padding: 80px 0;
    background-color: var(--bem88-win-deep-green);
    text-align: center;
}

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

.page-index-registration-process__benefit-card {
    background: var(--bem88-win-card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--bem88-win-border);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-index-registration-process__benefit-title {
    color: var(--bem88-win-primary);
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-index-registration-process__benefits-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--bem88-win-border);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-registration-process__faq-section {
    padding: 80px 0;
    background-color: var(--bem88-win-background);
}

.page-index-registration-process__faq-list {
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-index-registration-process__faq-item {
    background: var(--bem88-win-card-bg);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--bem88-win-border);
}

.page-index-registration-process__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--bem88-win-text-main);
    transition: background-color 0.3s ease;
}

.page-index-registration-process__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-index-registration-process__faq-item summary:hover {
    background-color: var(--bem88-win-deep-green);
}

.page-index-registration-process__faq-toggle {
    font-size: 1.5em;
    color: var(--bem88-win-primary);
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-index-registration-process__faq-item[open] .page-index-registration-process__faq-toggle {
    transform: rotate(45deg);
}

.page-index-registration-process__faq-answer {
    padding: 0 25px 20px 25px;
    color: var(--bem88-win-text-secondary);
    font-size: 1em;
    border-top: 1px solid var(--bem88-win-divider);
}

.page-index-registration-process__faq-answer p {
    margin-top: 15px;
    margin-bottom: 0;
}

.page-index-registration-process__faq-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid var(--bem88-win-border);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-index-registration-process__conclusion-section .page-index-registration-process__cta-button {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-registration-process__hero-content {
        margin-top: -100px;
    }
}

@media (max-width: 768px) {
    .page-index-registration-process__hero-section {
        padding: 10px 15px 40px 15px;
    }

    .page-index-registration-process__hero-content {
        margin-top: -80px;
        padding: 15px;
        max-width: 95%;
    }

    .page-index-registration-process__main-title {
        font-size: 2em;
    }

    .page-index-registration-process__hero-description {
        font-size: 1em;
    }

    .page-index-registration-process__cta-button,
    .page-index-registration-process__btn-primary,
    .page-index-registration-process__btn-secondary,
    .page-index-registration-process a[class*="button"],
    .page-index-registration-process a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-index-registration-process__step-grid,
    .page-index-registration-process__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-index-registration-process__container {
        padding: 20px 15px;
    }

    .page-index-registration-process__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .page-index-registration-process__text-block {
        font-size: 0.95em;
    }

    .page-index-registration-process__step-card,
    .page-index-registration-process__benefit-card,
    .page-index-registration-process__notes-item,
    .page-index-registration-process__faq-item {
        padding: 20px;
    }

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

    .page-index-registration-process__section,
    .page-index-registration-process__card,
    .page-index-registration-process__container,
    .page-index-registration-process__video-section,
    .page-index-registration-process__video-container,
    .page-index-registration-process__video-wrapper,
    .page-index-registration-process__cta-buttons,
    .page-index-registration-process__button-group,
    .page-index-registration-process__btn-container {
        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__faq-item summary {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-index-registration-process__faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-index-registration-process__hero-content {
        margin-top: -60px;
        padding: 10px;
    }
    .page-index-registration-process__main-title {
        font-size: 1.8em;
    }
}

/* Ensure content images are not smaller than 200px */
.page-index-registration-process img:not(.page-index-registration-process__hero-image) {
    min-width: 200px;
    min-height: 200px;
}