/* RESET AND CORE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-dark: #052e16;
    --forest-main: #16a34a;
    --forest-light: #86efac;
    --forest-bg: #f0fdf4;
    --aqua-glow: #00ffe0;
    --aqua-shadow: rgba(0, 255, 224, 0.4);
    --white: #ffffff;
    --text-main: #1f2937;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body.noblespiritJointWellnessAtlas_Body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--forest-bg);
}

/* TYPOGRAPHY */
.noblespiritJointWellnessAtlas_H1 {
    font-size: 3rem;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.noblespiritJointWellnessAtlas_H2 {
    font-size: 2.2rem;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.noblespiritJointWellnessAtlas_H3 {
    font-size: 1.5rem;
    color: var(--forest-main);
    margin-bottom: 1rem;
}

.noblespiritJointWellnessAtlas_Paragraph {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

/* HEADER */
.noblespiritJointWellnessAtlas_HeaderMain {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.noblespiritJointWellnessAtlas_AnimatedLine {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--forest-dark), var(--forest-main), var(--aqua-glow), var(--forest-main), var(--forest-dark));
    background-size: 200% auto;
    animation: noblespiritGradientFlow 5s linear infinite;
}

@keyframes noblespiritGradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.noblespiritJointWellnessAtlas_HeaderContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.noblespiritJointWellnessAtlas_LogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--forest-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.noblespiritJointWellnessAtlas_NavList {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.noblespiritJointWellnessAtlas_NavLink {
    text-decoration: none;
    color: var(--forest-dark);
    font-weight: 600;
    transition: var(--transition);
}

.noblespiritJointWellnessAtlas_NavLink:hover {
    color: var(--forest-main);
}

.noblespiritJointWellnessAtlas_MenuCheckbox {
    display: none;
}

.noblespiritJointWellnessAtlas_BurgerButton {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.noblespiritJointWellnessAtlas_BurgerButton span {
    width: 25px;
    height: 3px;
    background: var(--forest-dark);
    transition: var(--transition);
}

/* HERO SECTION */
.noblespiritJointWellnessAtlas_HeroSection {
    padding: 4rem 2rem;
    background: var(--white);
}

.noblespiritJointWellnessAtlas_HeroContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.noblespiritJointWellnessAtlas_HeroImageWrapper {
    flex: 1;
    border: 3px solid var(--aqua-glow);
    box-shadow: 0 0 20px var(--aqua-shadow);
    border-radius: 20px;
    overflow: hidden;
}

.noblespiritJointWellnessAtlas_HeroImg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.noblespiritJointWellnessAtlas_HeroTextContent {
    flex: 1.2;
}

.noblespiritJointWellnessAtlas_SubHeader {
    font-size: 1.4rem;
    color: var(--forest-main);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.noblespiritJointWellnessAtlas_HeroDescription {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.noblespiritJointWellnessAtlas_CtaButton {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--forest-main);
    color: var(--white);
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.noblespiritJointWellnessAtlas_CtaButton:hover {
    background: var(--forest-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.noblespiritJointWellnessAtlas_HeroMiniCard {
    margin-top: 3rem;
    background: var(--forest-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 5px solid var(--aqua-glow);
}

.noblespiritJointWellnessAtlas_MiniCardTitle {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--forest-dark);
}

.noblespiritJointWellnessAtlas_MiniCardList {
    list-style: none;
}

.noblespiritJointWellnessAtlas_MiniCardList li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.noblespiritJointWellnessAtlas_MiniCardList li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--forest-main);
    font-weight: bold;
}

/* PRACTITIONER SECTION */
.noblespiritJointWellnessAtlas_PractitionerSection {
    padding: 5rem 2rem;
}

.noblespiritJointWellnessAtlas_SectionTitleCenter {
    text-align: center;
    margin-bottom: 3rem;
}

.noblespiritJointWellnessAtlas_QuoteContainer {
    max-width: 900px;
    margin: 0 auto;
}

.noblespiritJointWellnessAtlas_QuoteWrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    position: relative;
    border: 2px solid var(--aqua-glow);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.noblespiritJointWellnessAtlas_QuoteIcon {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 5rem;
    color: var(--aqua-glow);
    font-family: serif;
    background: var(--white);
    line-height: 1;
}

.noblespiritJointWellnessAtlas_Blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.noblespiritJointWellnessAtlas_QuoteAuthor {
    display: block;
    text-align: right;
    font-weight: bold;
    color: var(--forest-main);
    font-size: 1.1rem;
}

/* REGULAR PRACTICE SECTION */
.noblespiritJointWellnessAtlas_RegularPracticeSection {
    padding: 5rem 2rem;
    background: var(--white);
}

.noblespiritJointWellnessAtlas_PracticeLayout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.noblespiritJointWellnessAtlas_PracticeText {
    flex: 1.2;
}

.noblespiritJointWellnessAtlas_PracticeImage {
    flex: 0.8;
}

.noblespiritJointWellnessAtlas_GenericImg {
    width: 100%;
    border-radius: 20px;
    box-shadow: 15px 15px 0 var(--forest-light);
}

.noblespiritJointWellnessAtlas_AccentedList {
    list-style: none;
    margin-top: 2rem;
}

.noblespiritJointWellnessAtlas_AccentedListItem {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.noblespiritJointWellnessAtlas_Marker {
    width: 12px;
    height: 12px;
    background: var(--aqua-glow);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--aqua-glow);
}

/* WHO IS IT FOR */
.noblespiritJointWellnessAtlas_WhoIsItForSection {
    padding: 5rem 2rem;
}

.noblespiritJointWellnessAtlas_ContainerNarrow {
    max-width: 800px;
    margin: 0 auto;
}

.noblespiritJointWellnessAtlas_IntroText {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.noblespiritJointWellnessAtlas_AccordionItem {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--forest-light);
}

.noblespiritJointWellnessAtlas_AccordionSummary {
    padding: 1.2rem;
    cursor: pointer;
    font-weight: 700;
    color: var(--forest-dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.noblespiritJointWellnessAtlas_AccordionSummary:hover {
    background: var(--forest-bg);
}

.noblespiritJointWellnessAtlas_AccordionSummary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--forest-main);
}

.noblespiritJointWellnessAtlas_AccordionItem[open] .noblespiritJointWellnessAtlas_AccordionSummary::after {
    content: "−";
}

.noblespiritJointWellnessAtlas_AccordionContent {
    padding: 0 1.2rem 1.2rem;
    color: var(--text-main);
}

/* TEXT SECTIONS */
.noblespiritJointWellnessAtlas_TextSection {
    padding: 5rem 2rem;
}

.noblespiritJointWellnessAtlas_BgLight {
    background: var(--white);
}

.noblespiritJointWellnessAtlas_Container {
    max-width: 1200px;
    margin: 0 auto;
}

.noblespiritJointWellnessAtlas_TextContentSplit {
    column-count: 1;
    max-width: 900px;
}

.noblespiritJointWellnessAtlas_BulletList {
    margin: 2rem 0;
    list-style: none;
}

.noblespiritJointWellnessAtlas_BulletList li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.noblespiritJointWellnessAtlas_BulletList li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--forest-main);
}

.noblespiritJointWellnessAtlas_TextGrid {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.noblespiritJointWellnessAtlas_TextCol {
    flex: 1;
    background: var(--forest-bg);
    padding: 2rem;
    border-radius: 20px;
    border-bottom: 4px solid var(--forest-main);
}

/* FAQ SECTION */
.noblespiritJointWellnessAtlas_FaqSection {
    padding: 5rem 2rem;
    background: var(--white);
}

.noblespiritJointWellnessAtlas_FaqIntro {
    text-align: center;
    margin-bottom: 3rem;
}

.noblespiritJointWellnessAtlas_FaqItem {
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--forest-light);
}

.noblespiritJointWellnessAtlas_FaqSummary {
    padding: 1.5rem 0;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    list-style: none;
}

.noblespiritJointWellnessAtlas_FaqAnswer {
    padding: 0 0 1.5rem 0;
    color: #4b5563;
}

/* PRICING SECTION */
.noblespiritJointWellnessAtlas_PricingSection {
    padding: 5rem 2rem;
}

.noblespiritJointWellnessAtlas_PriceGrid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.noblespiritJointWellnessAtlas_PriceCard {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    flex: 1;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--forest-light);
    transition: var(--transition);
}

.noblespiritJointWellnessAtlas_PriceCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.noblespiritJointWellnessAtlas_PriceCardFeatured {
    border: 2px solid var(--aqua-glow);
    box-shadow: 0 10px 30px var(--aqua-shadow);
    transform: scale(1.05);
    background: linear-gradient(145deg, var(--white), var(--forest-bg));
}

.noblespiritJointWellnessAtlas_PriceCardFeatured:hover {
    transform: scale(1.05) translateY(-10px);
}

.noblespiritJointWellnessAtlas_PriceTitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.noblespiritJointWellnessAtlas_PriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--forest-dark);
    margin-bottom: 2rem;
}

.noblespiritJointWellnessAtlas_PriceFeatures {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
}

.noblespiritJointWellnessAtlas_PriceFeatures li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--forest-bg);
    font-size: 0.95rem;
}

.noblespiritJointWellnessAtlas_PriceBtn {
    text-decoration: none;
    padding: 0.8rem 2rem;
    background: var(--forest-main);
    color: var(--white);
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
}

.noblespiritJointWellnessAtlas_PriceBtn:hover {
    background: var(--forest-dark);
}

/* FORM SECTION */
.noblespiritJointWellnessAtlas_FormSection {
    padding: 6rem 2rem;
    background: var(--forest-dark);
    color: var(--white);
}

.noblespiritJointWellnessAtlas_FormSection .noblespiritJointWellnessAtlas_H2 {
    color: var(--white);
    text-align: center;
}

.noblespiritJointWellnessAtlas_FormSubtitle {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.noblespiritJointWellnessAtlas_ContactForm {
    background: rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.noblespiritJointWellnessAtlas_FormGroup {
    margin-bottom: 1.5rem;
}

.noblespiritJointWellnessAtlas_FormLabel {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.noblespiritJointWellnessAtlas_FormInput, 
.noblespiritJointWellnessAtlas_FormTextarea {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.9);
    color: var(--text-main);
    font-family: inherit;
}

.noblespiritJointWellnessAtlas_FormTextarea {
    height: 120px;
    resize: vertical;
}

.noblespiritJointWellnessAtlas_FormCheckboxGroup {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.noblespiritJointWellnessAtlas_CheckboxLabel a {
    color: var(--aqua-glow);
}

.noblespiritJointWellnessAtlas_SubmitButton {
    width: 100%;
    padding: 1.2rem;
    background: var(--aqua-glow);
    color: var(--forest-dark);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.noblespiritJointWellnessAtlas_SubmitButton:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px var(--aqua-shadow);
}

.noblespiritJointWellnessAtlas_DisclaimerText {
    margin-top: 2rem;
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.7;
}

/* FOOTER */
.noblespiritJointWellnessAtlas_Footer {
    padding: 4rem 2rem 2rem;
    background: var(--white);
    border-top: 1px solid var(--forest-light);
}

.noblespiritJointWellnessAtlas_FooterContainer {
    max-width: 1200px;
    margin: 0 auto;
}

.noblespiritJointWellnessAtlas_FooterTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.noblespiritJointWellnessAtlas_FooterLogo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--forest-dark);
}

.noblespiritJointWellnessAtlas_FooterContacts p {
    font-size: 0.9rem;
    text-align: right;
}

.noblespiritJointWellnessAtlas_FooterContacts a {
    color: var(--forest-main);
    text-decoration: none;
}

.noblespiritJointWellnessAtlas_FooterMiddle {
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
}

.noblespiritJointWellnessAtlas_FooterBottom {
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.noblespiritJointWellnessAtlas_FooterLinks {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.noblespiritJointWellnessAtlas_FooterLinks a {
    text-decoration: none;
    color: #6b7280;
    font-size: 0.85rem;
    transition: var(--transition);
}

.noblespiritJointWellnessAtlas_FooterLinks a:hover {
    color: var(--forest-main);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .noblespiritJointWellnessAtlas_HeroContainer,
    .noblespiritJointWellnessAtlas_PracticeLayout {
        flex-direction: column;
    }
    .noblespiritJointWellnessAtlas_HeroTextContent,
    .noblespiritJointWellnessAtlas_PracticeText {
        order: 2;
    }
    .noblespiritJointWellnessAtlas_HeroImageWrapper,
    .noblespiritJointWellnessAtlas_PracticeImage {
        order: 1;
        width: 100%;
        max-width: 500px;
    }
    .noblespiritJointWellnessAtlas_PriceGrid {
        flex-direction: column;
        align-items: center;
    }
    .noblespiritJointWellnessAtlas_PriceCard {
        width: 100%;
        max-width: 400px;
    }
    .noblespiritJointWellnessAtlas_TextGrid {
        flex-direction: column;
    }
    .noblespiritJointWellnessAtlas_H1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .noblespiritJointWellnessAtlas_BurgerButton {
        display: flex;
    }
    .noblespiritJointWellnessAtlas_NavMenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 2rem;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .noblespiritJointWellnessAtlas_NavList {
        flex-direction: column;
        text-align: center;
    }
    .noblespiritJointWellnessAtlas_MenuCheckbox:checked ~ .noblespiritJointWellnessAtlas_NavMenu {
        display: block;
    }
    .noblespiritJointWellnessAtlas_FooterTop {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .noblespiritJointWellnessAtlas_FooterContacts p {
        text-align: center;
    }
}