.page-new-user-guide {
    color: #F2FFF6; /* Text Main for dark background */
    background-color: transparent; /* Body background handled by shared.css var(--footer-bg) which is #08160F */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-new-user-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #0A4B2C; /* Deep Green for hero section background */
    overflow: hidden;
}

.page-new-user-guide__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for the image container */
    margin-bottom: 30px; /* Space between image and content */
}

.page-new-user-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-new-user-guide__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1; /* Ensure content is above any background elements if needed */
}

.page-new-user-guide__hero-title {
    font-size: clamp(2em, 5vw, 3.2em); /* Responsive font size for H1 */
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-new-user-guide__hero-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-new-user-guide__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.page-new-user-guide__btn-primary,
.page-new-user-guide__btn-secondary,
.page-new-user-guide a[class*="btn"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s ease;
    min-width: 180px;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

.page-new-user-guide__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-new-user-guide__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-new-user-guide__btn-secondary {
    background-color: transparent;
    color: #F2FFF6; /* Text Main */
    border: 2px solid #2E7A4E; /* Border color */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-new-user-guide__btn-secondary:hover {
    background-color: rgba(46, 122, 78, 0.2); /* Border color with opacity */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-new-user-guide__section {
    padding: 50px 20px;
    background-color: #08160F; /* Background color */
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-new-user-guide__section:last-of-type {
    border-bottom: none;
}

.page-new-user-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-new-user-guide__container--flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* Allow wrapping for mobile */
}

.page-new-user-guide__container--reverse {
    flex-direction: row-reverse;
}

.page-new-user-guide__content-block {
    flex: 1;
    min-width: 300px;
}

.page-new-user-guide__image-block {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-new-user-guide__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.page-new-user-guide__heading {
    font-size: 2.2em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

.page-new-user-guide__sub-heading {
    font-size: 1.6em;
    color: #2AD16F; /* Lighter green for sub-headings */
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-new-user-guide__text {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-new-user-guide__text a {
    color: #57E38D; /* Glow color for links */
    text-decoration: none;
    font-weight: 500;
}

.page-new-user-guide__text a:hover {
    text-decoration: underline;
}

.page-new-user-guide__numbered-list,
.page-new-user-guide__bullet-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-new-user-guide__list-item {
    position: relative;
    margin-bottom: 12px;
    padding-left: 30px;
    color: #A7D9B8; /* Text Secondary */
}

.page-new-user-guide__numbered-list .page-new-user-guide__list-item::before {
    content: counter(list-item) ".";
    counter-increment: list-item;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #2AD16F; /* Lighter green */
    font-size: 1.1em;
}

.page-new-user-guide__bullet-list .page-new-user-guide__list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #2AD16F; /* Lighter green */
    font-size: 1.2em;
}

.page-new-user-guide__sub-list {
    list-style-type: none;
    padding-left: 20px;
    margin-top: 10px;
}

.page-new-user-guide__sub-list .page-new-user-guide__list-item {
    padding-left: 20px;
    font-size: 0.95em;
}

.page-new-user-guide__sub-list .page-new-user-guide__list-item::before {
    content: "-";
    color: #57E38D; /* Glow color */
    font-weight: 700;
    font-size: 1em;
    left: 0;
}

/* FAQ Section */
.page-new-user-guide__faq-section {
    padding-bottom: 70px;
}

.page-new-user-guide__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border color */
}

.page-new-user-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1em;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
    user-select: none;
}

.page-new-user-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-new-user-guide__faq-question:hover {
    background-color: #1E3A2A; /* Divider color for hover */
}

.page-new-user-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #57E38D; /* Glow color */
    transition: transform 0.3s ease;
}

.page-new-user-guide__faq-item[open] .page-new-user-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-new-user-guide__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.6;
}

.page-new-user-guide__faq-item[open] .page-new-user-guide__faq-answer {
    padding-top: 10px;
}

/* Conclusion Section */
.page-new-user-guide__conclusion {
    text-align: center;
    padding-top: 70px;
}

.page-new-user-guide__conclusion .page-new-user-guide__heading {
    text-align: center;
}

.page-new-user-guide__copyright-info {
    padding: 30px 20px;
    text-align: center;
    background-color: #08160F; /* Background color */
    border-top: 1px solid #1E3A2A; /* Divider */
}

.page-new-user-guide__text--center {
    text-align: center;
}

/* Responsive styles */
@media (max-width: 992px) {
    .page-new-user-guide__container--flex {
        flex-direction: column;
    }
    .page-new-user-guide__container--reverse {
        flex-direction: column; /* Revert to column for reverse on mobile */
    }
    .page-new-user-guide__content-block,
    .page-new-user-guide__image-block {
        width: 100%;
        max-width: 100%;
    }
    .page-new-user-guide__image-block {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-new-user-guide__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-new-user-guide__hero-title {
        font-size: clamp(1.8em, 8vw, 2.5em);
    }
    .page-new-user-guide__hero-description {
        font-size: 1em;
    }
    .page-new-user-guide__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
    }
    .page-new-user-guide__btn-primary,
    .page-new-user-guide__btn-secondary,
    .page-new-user-guide a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95em;
    }

    .page-new-user-guide__section {
        padding: 30px 15px;
    }
    .page-new-user-guide__container {
        padding: 0 10px;
    }
    .page-new-user-guide__heading {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-new-user-guide__sub-heading {
        font-size: 1.4em;
    }
    .page-new-user-guide p,
    .page-new-user-guide li {
        font-size: 15px;
        line-height: 1.6;
    }
    .page-new-user-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-new-user-guide__section,
    .page-new-user-guide__card,
    .page-new-user-guide__container,
    .page-new-user-guide__video-section,
    .page-new-user-guide__video-container,
    .page-new-user-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-new-user-guide__video-section {
        padding-top: 10px !important;
    }
    .page-new-user-guide__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-new-user-guide__faq-answer {
        padding: 0 20px 15px 20px;
    }
}