/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.herelyHeartLifestyleField_BodyBase {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #052e16;
    background-color: #f0fdf4;
    overflow-x: hidden;
}

/* Header & Nav */
.herelyHeartLifestyleField_HeaderNav {
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(5, 46, 22, 0.05);
}

.herelyHeartLifestyleField_HeaderContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.herelyHeartLifestyleField_HeaderBrand {
    font-size: 28px;
    font-weight: 800;
    color: #16a34a;
    letter-spacing: -1px;
}

.herelyHeartLifestyleField_NavigationMenu {
    display: flex;
}

.herelyHeartLifestyleField_NavList {
    display: flex;
    list-style: none;
    gap: 30px;
}

.herelyHeartLifestyleField_NavLink {
    text-decoration: none;
    color: #052e16;
    font-weight: 500;
    transition: color 0.3s;
}

.herelyHeartLifestyleField_NavLink:hover {
    color: #16a34a;
}

/* Mobile Menu Logic (No JS) */
.herelyHeartLifestyleField_NavToggleHidden {
    display: none;
}

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

.herelyHeartLifestyleField_BurgerButton span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #052e16;
}

@media (max-width: 768px) {
    .herelyHeartLifestyleField_BurgerButton {
        display: flex;
    }
    .herelyHeartLifestyleField_NavigationMenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        display: none;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .herelyHeartLifestyleField_NavList {
        flex-direction: column;
        gap: 15px;
    }
    .herelyHeartLifestyleField_NavToggleHidden:checked ~ .herelyHeartLifestyleField_NavigationMenu {
        display: flex;
    }
}

.herelyHeartLifestyleField_HeaderWave {
    line-height: 0;
    width: 100%;
}

/* Hero Section */
.herelyHeartLifestyleField_HeroSection {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.herelyHeartLifestyleField_HeroGrid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.herelyHeartLifestyleField_HeroImageWrapper {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 40px 10px 40px 10px;
    overflow: hidden;
    box-shadow: 20px 20px 0 #86efac;
}

.herelyHeartLifestyleField_HeroOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 46, 22, 0.4) 0%, rgba(22, 163, 74, 0.1) 100%);
    pointer-events: none;
}

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

.herelyHeartLifestyleField_HeroTextContent {
    flex: 1.2;
    min-width: 320px;
}

.herelyHeartLifestyleField_HeroH1 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #052e16;
}

.herelyHeartLifestyleField_HeroDesc {
    font-size: 18px;
    margin-bottom: 20px;
    color: #1a4d2e;
}

.herelyHeartLifestyleField_DisclaimerText {
    margin-top: 30px;
    font-size: 13px;
    font-style: italic;
    color: #16a34a;
}

.herelyHeartLifestyleField_HeroButton {
    display: inline-block;
    padding: 16px 35px;
    background-color: #16a34a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: background 0.3s, transform 0.2s;
}

.herelyHeartLifestyleField_HeroButton:hover {
    background-color: #052e16;
    transform: translateY(-3px);
}

/* Section Headings */
.herelyHeartLifestyleField_SectionHead {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.herelyHeartLifestyleField_SectionTitle {
    font-size: 32px;
    margin-bottom: 15px;
}

.herelyHeartLifestyleField_SectionDecor {
    width: 60px;
    height: 4px;
    background-color: #16a34a;
    margin: 0 auto;
    border-radius: 2px;
}

/* Pricing / Services Section */
.herelyHeartLifestyleField_PricingSection {
    padding: 100px 20px;
    background-color: #ffffff;
}

.herelyHeartLifestyleField_PricingGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.herelyHeartLifestyleField_PricingCard {
    background: #f0fdf4;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.herelyHeartLifestyleField_CardBar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
}

.herelyHeartLifestyleField_AccentGreen .herelyHeartLifestyleField_CardBar { background-color: #86efac; }
.herelyHeartLifestyleField_AccentDeep .herelyHeartLifestyleField_CardBar { background-color: #16a34a; }
.herelyHeartLifestyleField_AccentLight .herelyHeartLifestyleField_CardBar { background-color: #052e16; }

.herelyHeartLifestyleField_CardTitle {
    font-size: 24px;
    margin-bottom: 15px;
}

.herelyHeartLifestyleField_Price {
    font-size: 36px;
    font-weight: 800;
    color: #16a34a;
    margin-bottom: 25px;
}

.herelyHeartLifestyleField_CardFeatures {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.herelyHeartLifestyleField_CardFeatures li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(22, 163, 74, 0.1);
    font-size: 15px;
}

.herelyHeartLifestyleField_CardBtn {
    text-align: center;
    padding: 12px;
    background-color: #052e16;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.herelyHeartLifestyleField_CardBtn:hover {
    opacity: 0.9;
}

/* Quote Section */
.herelyHeartLifestyleField_QuoteSection {
    padding: 100px 20px;
    background-color: #16a34a;
    color: #ffffff;
    text-align: center;
    position: relative;
}

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

.herelyHeartLifestyleField_QuoteText {
    font-size: 28px;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 30px;
}

.herelyHeartLifestyleField_QuoteAuthor {
    font-size: 22px;
    font-weight: 700;
}

.herelyHeartLifestyleField_QuoteSub {
    font-size: 16px;
    opacity: 0.9;
}

/* FAQ Section */
.herelyHeartLifestyleField_FaqSection {
    padding: 100px 20px;
}

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

.herelyHeartLifestyleField_FaqIntro {
    text-align: center;
    margin-bottom: 40px;
    color: #1a4d2e;
}

.herelyHeartLifestyleField_FaqList {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.herelyHeartLifestyleField_FaqItem {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 5px;
}

.herelyHeartLifestyleField_FaqSummary {
    padding: 15px 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.herelyHeartLifestyleField_FaqSummary::after {
    content: '+';
    float: right;
    color: #16a34a;
}

.herelyHeartLifestyleField_FaqContent {
    padding: 0 20px 20px 20px;
    color: #333;
}

/* Articles Section */
.herelyHeartLifestyleField_ArticlesSection {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.herelyHeartLifestyleField_ArticleBox {
    margin-bottom: 60px;
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}

.herelyHeartLifestyleField_ArticleTitle {
    font-size: 32px;
    margin-bottom: 25px;
    color: #16a34a;
}

.herelyHeartLifestyleField_ArticleContent p {
    margin-bottom: 20px;
    font-size: 17px;
}

.herelyHeartLifestyleField_ArticleList {
    margin-left: 20px;
    margin-bottom: 25px;
}

.herelyHeartLifestyleField_ArticleList li {
    margin-bottom: 10px;
    color: #052e16;
    font-weight: 600;
}

.herelyHeartLifestyleField_TipGrid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.herelyHeartLifestyleField_TipItem {
    flex: 1;
    min-width: 200px;
    background-color: #f0fdf4;
    padding: 20px;
    border-left: 4px solid #16a34a;
    border-radius: 5px;
    font-weight: 500;
}

/* Audience Section */
.herelyHeartLifestyleField_AudienceSection {
    padding: 100px 20px;
    background-color: #f0fdf4;
}

.herelyHeartLifestyleField_AudienceIntro {
    max-width: 700px;
    margin: 0 auto;
    color: #1a4d2e;
}

.herelyHeartLifestyleField_AudienceGrid {
    max-width: 1200px;
    margin: 40px auto 0;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.herelyHeartLifestyleField_AudienceCard {
    background: #ffffff;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    padding: 30px;
    text-align: center;
    border-radius: 20px;
    transition: transform 0.3s;
}

.herelyHeartLifestyleField_AudienceCard:hover {
    transform: translateY(-5px);
}

.herelyHeartLifestyleField_AvatarBox {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #86efac;
}

.herelyHeartLifestyleField_AvatarImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.herelyHeartLifestyleField_AudienceRole {
    font-size: 19px;
    margin-bottom: 12px;
    color: #052e16;
}

.herelyHeartLifestyleField_AudienceDesc {
    font-size: 14px;
    color: #444;
}

/* Benefits Section */
.herelyHeartLifestyleField_BenefitsSection {
    padding: 100px 20px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.herelyHeartLifestyleField_BenefitsGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.herelyHeartLifestyleField_BenefitsText {
    flex: 1.2;
    min-width: 320px;
}

.herelyHeartLifestyleField_BenefitsTitle {
    font-size: 34px;
    margin-bottom: 25px;
}

.herelyHeartLifestyleField_BenefitsPara {
    font-size: 18px;
    margin-bottom: 25px;
}

.herelyHeartLifestyleField_IconsRow {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.herelyHeartLifestyleField_BenefitIconBox {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f0fdf4;
    padding: 10px 15px;
    border-radius: 50px;
}

.herelyHeartLifestyleField_IconCircle {
    background-color: #16a34a;
    color: #fff;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
}

.herelyHeartLifestyleField_IconLabel {
    font-weight: 700;
    font-size: 14px;
}

.herelyHeartLifestyleField_BenefitsImage {
    flex: 0.8;
    min-width: 300px;
}

.herelyHeartLifestyleField_BImg {
    width: 100%;
    border-radius: 10% 90% 15% 85% / 80% 20% 80% 20%;
    box-shadow: 0 20px 40px rgba(22, 163, 74, 0.1);
}

/* Form Section */
.herelyHeartLifestyleField_FormSection {
    padding: 100px 20px;
    background-color: #f0fdf4;
}

.herelyHeartLifestyleField_FormContainer {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.herelyHeartLifestyleField_FormTitle {
    text-align: center;
    margin-bottom: 10px;
}

.herelyHeartLifestyleField_FormSubtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.herelyHeartLifestyleField_FormGroup {
    margin-bottom: 20px;
}

.herelyHeartLifestyleField_Label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.herelyHeartLifestyleField_Input, .herelyHeartLifestyleField_Textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
}

.herelyHeartLifestyleField_Input:focus, .herelyHeartLifestyleField_Textarea:focus {
    outline: none;
    border-color: #16a34a;
}

.herelyHeartLifestyleField_Textarea {
    min-height: 120px;
    resize: vertical;
}

.herelyHeartLifestyleField_CheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.herelyHeartLifestyleField_Checkbox {
    margin-top: 5px;
}

.herelyHeartLifestyleField_CheckLabel {
    font-size: 14px;
}

.herelyHeartLifestyleField_SubmitBtn {
    width: 100%;
    padding: 18px;
    background-color: #16a34a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.herelyHeartLifestyleField_SubmitBtn:hover {
    background-color: #052e16;
}

/* Footer */
.herelyHeartLifestyleField_Footer {
    background-color: #052e16;
    color: #ffffff;
    padding: 80px 20px 40px;
}

.herelyHeartLifestyleField_FooterContainer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.herelyHeartLifestyleField_FooterCopy {
    margin-bottom: 15px;
    font-weight: 700;
}

.herelyHeartLifestyleField_FooterContact {
    margin-bottom: 10px;
}

.herelyHeartLifestyleField_FooterContact a {
    color: #86efac;
    text-decoration: none;
}

.herelyHeartLifestyleField_FooterNav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
}

.herelyHeartLifestyleField_FooterLink {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.herelyHeartLifestyleField_FooterLink:hover {
    color: #fff;
    text-decoration: underline;
}

/* Reactor Rings Decorations */
.herelyHeartLifestyleField_ReactorRing {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(22, 163, 74, 0.1);
    pointer-events: none;
    z-index: 0;
}

.herelyHeartLifestyleField_RingPos1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    box-shadow: 0 0 50px rgba(134, 239, 172, 0.2);
}

.herelyHeartLifestyleField_RingPos2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -100px;
    border-color: rgba(255,255,255,0.2);
}

.herelyHeartLifestyleField_RingPos3 {
    width: 500px;
    height: 500px;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
}

/* Final Responsive Tweaks */
@media (max-width: 992px) {
    .herelyHeartLifestyleField_HeroH1 { font-size: 34px; }
    .herelyHeartLifestyleField_HeroGrid { flex-direction: column-reverse; }
    .herelyHeartLifestyleField_ArticleBox { padding: 30px; }
}