/* style/index-how-to-register-189wg.css */

/* Base styles for the page content area */
.page-index-how-to-register-189wg {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main, #F2FFF6); /* Default text color for dark background */
    background-color: var(--bg-color, #08160F); /* Assume dark background from shared */
    padding-bottom: 50px; /* Add some padding at the bottom */
}

/* Hero Section */
.page-index-how-to-register-189wg__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small top padding, larger bottom padding */
    overflow: hidden;
    background-color: var(--background, #08160F);
    color: var(--text-main, #F2FFF6);
}

.page-index-how-to-register-189wg__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for aesthetic */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.page-index-how-to-register-189wg__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-index-how-to-register-189wg__hero-content {
    max-width: 800px;
    margin: 0 auto;
    z-index: 1; /* Ensure content is above any background elements if present */
}

.page-index-how-to-register-189wg__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-main, #F2FFF6);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-how-to-register-189wg__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-secondary, #A7D9B8);
}

/* General Section Styling */
.page-index-how-to-register-189wg__section {
    padding: 60px 20px;
    background-color: var(--background, #08160F);
    color: var(--text-main, #F2FFF6);
}

.page-index-how-to-register-189wg__light-bg {
    background-color: #f8f9fa; /* A lighter background for contrast sections */
    color: #333333; /* Dark text for light background */
}

.page-index-how-to-register-189wg__dark-bg {
    background-color: var(--background, #08160F);
    color: var(--text-main, #F2FFF6);
}

.page-index-how-to-register-189wg__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-index-how-to-register-189wg__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: inherit; /* Inherit color from parent section */
}

.page-index-how-to-register-189wg__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: inherit; /* Inherit color from parent section */
}

/* Card Styling */
.page-index-how-to-register-189wg__card {
    background-color: var(--card-bg, #11271B);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main, #F2FFF6);
    border: 1px solid var(--border-color, #2E7A4E);
}

.page-index-how-to-register-189wg__light-bg .page-index-how-to-register-189wg__card {
    background-color: #ffffff;
    color: #333333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.page-index-how-to-register-189wg__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Button Styling */
.page-index-how-to-register-189wg__btn-primary,
.page-index-how-to-register-189wg__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-index-how-to-register-189wg__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-how-to-register-189wg__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-how-to-register-189wg__btn-secondary {
    background-color: transparent;
    color: var(--main-color, #11A84E);
    border: 2px solid var(--main-color, #11A84E);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-index-how-to-register-189wg__btn-secondary:hover {
    background-color: var(--main-color, #11A84E);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Feature Grid */
.page-index-how-to-register-189wg__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-how-to-register-189wg__feature-item {
    text-align: center;
}

.page-index-how-to-register-189wg__feature-icon {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-index-how-to-register-189wg__feature-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: inherit;
}

.page-index-how-to-register-189wg__feature-text {
    font-size: 1em;
    color: inherit;
}

/* Steps Grid */
.page-index-how-to-register-189wg__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-how-to-register-189wg__step-item {
    position: relative;
    text-align: left;
    padding-top: 60px; /* Space for step number */
}

.page-index-how-to-register-189wg__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    border: 4px solid var(--background, #08160F);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-index-how-to-register-189wg__light-bg .page-index-how-to-register-189wg__step-number {
    border: 4px solid #f8f9fa;
}

.page-index-how-to-register-189wg__step-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: inherit;
}

.page-index-how-to-register-189wg__step-text {
    margin-bottom: 20px;
    color: inherit;
}

.page-index-how-to-register-189wg__step-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px;
}

.page-index-how-to-register-189wg__form-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-index-how-to-register-189wg__form-list li {
    margin-bottom: 10px;
    color: inherit;
}

/* Checklist */
.page-index-how-to-register-189wg__checklist {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-how-to-register-189wg__checklist-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: #333333;
    border-left: 5px solid var(--main-color, #11A84E);
}

.page-index-how-to-register-189wg__checklist-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #11A84E;
}

/* Content Grid (After Register Section) */
.page-index-how-to-register-189wg__content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-how-to-register-189wg__content-block {
    text-align: center;
}

.page-index-how-to-register-189wg__content-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: inherit;
}

/* FAQ Section */
.page-index-how-to-register-189wg__faq-list {
    margin-top: 40px;
}

.page-index-how-to-register-189wg__faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.page-index-how-to-register-189wg__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: var(--card-bg, #11271B);
    color: var(--text-main, #F2FFF6);
    font-weight: bold;
    font-size: 1.2em;
    cursor: pointer;
    border-bottom: 1px solid var(--divider, #1E3A2A);
    transition: background-color 0.3s ease;
}

.page-index-how-to-register-189wg__light-bg .page-index-how-to-register-189wg__faq-question {
    background-color: #ffffff;
    color: #333333;
    border-bottom: 1px solid #e0e0e0;
}

.page-index-how-to-register-189wg__faq-question:hover {
    background-color: var(--deep-green, #0A4B2C);
}

.page-index-how-to-register-189wg__light-bg .page-index-how-to-register-189wg__faq-question:hover {
    background-color: #f0f0f0;
}

.page-index-how-to-register-189wg__faq-qtext {
    flex-grow: 1;
}

.page-index-how-to-register-189wg__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 20px;
}

.page-index-how-to-register-189wg__faq-answer {
    padding: 20px 30px;
    background-color: var(--card-bg, #11271B);
    color: var(--text-secondary, #A7D9B8);
    font-size: 1em;
    border-top: 1px solid var(--divider, #1E3A2A);
}

.page-index-how-to-register-189wg__light-bg .page-index-how-to-register-189wg__faq-answer {
    background-color: #f9f9f9;
    color: #555555;
    border-top: 1px solid #e0e0e0;
}

.page-index-how-to-register-189wg__faq-answer p {
    margin-bottom: 15px;
    color: inherit;
}

.page-index-how-to-register-189wg__faq-answer .page-index-how-to-register-189wg__btn-secondary {
    margin-top: 10px;
}

/* Ensure details element's default marker is hidden for custom toggle */
.page-index-how-to-register-189wg__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-index-how-to-register-189wg__faq-item summary {
    list-style: none;
}

/* Responsive Design */
/* All images basic responsive */
.page-index-how-to-register-189wg img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* All image containers basic responsive */
.page-index-how-to-register-189wg__hero-image-wrapper,
.page-index-how-to-register-189wg__feature-item,
.page-index-how-to-register-189wg__step-item,
.page-index-how-to-register-189wg__content-block {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

@media (max-width: 768px) {
    .page-index-how-to-register-189wg {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-index-how-to-register-189wg__hero-section {
        padding: 10px 15px 40px;
    }

    .page-index-how-to-register-189wg__main-title {
        font-size: 2em;
    }

    .page-index-how-to-register-189wg__hero-description {
        font-size: 1em;
    }

    .page-index-how-to-register-189wg__section {
        padding: 40px 15px;
    }

    .page-index-how-to-register-189wg__section-title {
        font-size: 2em;
    }

    .page-index-how-to-register-189wg__feature-grid,
    .page-index-how-to-register-189wg__steps-grid,
    .page-index-how-to-register-189wg__checklist,
    .page-index-how-to-register-189wg__content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-index-how-to-register-189wg__step-number {
        top: -15px;
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }

    .page-index-how-to-register-189wg__step-item {
        padding-top: 50px;
    }

    .page-index-how-to-register-189wg__btn-primary,
    .page-index-how-to-register-189wg__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* All images responsive for mobile */
    .page-index-how-to-register-189wg img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-index-how-to-register-189wg__section,
    .page-index-how-to-register-189wg__card,
    .page-index-how-to-register-189wg__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-index-how-to-register-189wg__hero-image-wrapper {
        max-height: 300px; /* Adjust max height for mobile hero image */
    }

    /* Button containers for mobile */
    .page-index-how-to-register-189wg__cta-buttons,
    .page-index-how-to-register-189wg__button-group,
    .page-index-how-to-register-189wg__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
}