.page-new-user-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Body background is #1a1a1a (dark), so text must be light */
    background-color: #1a1a1a; /* Ensure consistency with body background */
}

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

.page-new-user-guide__section {
    padding: 60px 0;
}

.page-new-user-guide__dark-bg {
    background-color: #1a1a1a;
    color: #ffffff;
}

.page-new-user-guide__light-bg {
    background-color: #ffffff;
    color: #333333; /* Light background, so text must be dark */
}

.page-new-user-guide__section-title,
.page-new-user-guide__hero-title,
.page-new-user-guide__feature-title,
.page-new-user-guide__guide-title,
.page-new-user-guide__product-title,
.page-new-user-guide__promo-title,
.page-new-user-guide__info-title,
.page-new-user-guide__cta-title {
    color: #017439; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-new-user-guide__section-title {
    font-size: 2.5em;
}

.page-new-user-guide__hero-title {
    font-size: 3.5em;
    color: #ffffff;
}

.page-new-user-guide__section-intro,
.page-new-user-guide__hero-description,
.page-new-user-guide__cta-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
}
.page-new-user-guide__section-intro {
    color: inherit; /* Inherit from section, will be white or dark grey */
}

/* Hero Section */
.page-new-user-guide__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: var(--header-offset, 120px) 0 60px 0; /* Fixed header offset */
    overflow: hidden;
    background-color: #017439; /* Use primary color for hero background */
}

.page-new-user-guide__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

.page-new-user-guide__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-new-user-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Subtle overlay to allow text readability */
    filter: brightness(0.7); /* Darken image to ensure text contrast */
}

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

.page-new-user-guide__btn-primary,
.page-new-user-guide__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;
    cursor: pointer;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow long words to break */
    box-sizing: border-box;
}

.page-new-user-guide__btn-primary {
    background-color: #C30808; /* Custom color for Register/Login */
    color: #FFFF00; /* Custom font color for Register/Login */
    border: 2px solid #C30808;
}

.page-new-user-guide__btn-primary:hover {
    background-color: #e00b0b;
    border-color: #e00b0b;
}

.page-new-user-guide__btn-secondary {
    background-color: transparent;
    color: #017439; /* Brand primary color for secondary button text */
    border: 2px solid #017439;
}

.page-new-user-guide__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

.page-new-user-guide__btn-large {
    font-size: 1.2em;
    padding: 18px 35px;
}

.page-new-user-guide__text-link {
    color: #017439;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-new-user-guide__text-link:hover {
    color: #004d27;
}

/* Feature Grid */
.page-new-user-guide__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-new-user-guide__feature-card {
    background-color: #f8f8f8; /* Light background for feature cards */
    color: #333333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}