/* BASE RESET & FONTS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* COLORS: Forest Organic Palette with Laser Aqua Accents
   #052e16 (Dark Green)
   #16a34a (Medium Green)
   #86efac (Light Green)
   #f0fdf4 (Background Green)
   #00ffff (Aqua Laser Accent)
*/

/* SHARED STYLES */
.WogihiyGuide_Sec_Head_Lvl2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #052e16;
    position: relative;
    padding-bottom: 10px;
}

.WogihiyGuide_Sec_Head_Lvl2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: #00ffff;
    box-shadow: 0 0 8px #00ffff;
}

.WogihiyGuide_Center_Txt {
    text-align: center;
}

.WogihiyGuide_Center_Txt::after {
    left: 50%;
    transform: translateX(-50%);
}

/* HEADER */
.WogihiyGuide_Head_Main_Wrap {
    background-color: #052e16;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.WogihiyGuide_Head_Logo_Text {
    color: #86efac;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.WogihiyGuide_Head_Accent_Line {
    height: 5px;
    background: #16a34a;
    border-bottom: 2px solid #00ffff;
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.4);
}

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

.WogihiyGuide_Head_Nav_Link {
    text-decoration: none;
    color: #f0fdf4;
    font-weight: 500;
    transition: color 0.3s ease;
}

.WogihiyGuide_Head_Nav_Link:hover {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

/* BURGER MENU HACK */
.WogihiyGuide_Nav_Toggl_Inp {
    display: none;
}

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

.WogihiyGuide_Nav_Burg_Btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #f0fdf4;
    transition: 0.3s;
}

/* HERO SECTION */
.WogihiyGuide_Hero_Outer_Sec {
    position: relative;
    padding: 6rem 2rem;
    background-color: #f0fdf4;
    overflow: hidden;
}

.WogihiyGuide_Hero_Decor_Shape_1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid #16a34a;
    top: -50px;
    right: -50px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.2;
}

.WogihiyGuide_Hero_Decor_Shape_2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid #00ffff;
    bottom: 20px;
    left: -30px;
    transform: rotate(45deg);
    opacity: 0.1;
}

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

.WogihiyGuide_Hero_Text_Col {
    flex: 1;
}

.WogihiyGuide_Hero_Main_Title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #052e16;
}

.WogihiyGuide_Hero_Sub_Desc {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #16a34a;
}

.WogihiyGuide_Hero_Txt_Para {
    margin-bottom: 1rem;
    color: #052e16;
}

.WogihiyGuide_Hero_CTA_Button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #052e16;
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: 2px solid #00ffff;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    transition: 0.3s ease;
    margin-top: 1rem;
}

.WogihiyGuide_Hero_CTA_Button:hover {
    background-color: #00ffff;
    color: #052e16;
    box-shadow: 0 0 25px #00ffff;
}

.WogihiyGuide_Hero_Imag_Col {
    flex: 1;
}

.WogihiyGuide_Hero_Main_Img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 20px 20px 0 #16a34a;
    object-fit: cover;
}

/* PRACTICE STATS SECTION */
.WogihiyGuide_Prac_Stats_Sec {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.WogihiyGuide_Prac_Stats_Flex {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    flex-direction: row-reverse;
}

.WogihiyGuide_Prac_Stats_Txt_Col {
    flex: 1;
}

.WogihiyGuide_Prac_Stat_List {
    margin-top: 2rem;
}

.WogihiyGuide_Prac_Stat_Item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #86efac;
}

.WogihiyGuide_Stat_Item_Title {
    color: #16a34a;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.WogihiyGuide_Prac_Stats_Img_Col {
    flex: 1;
}

.WogihiyGuide_Prac_Main_Img {
    width: 100%;
    height: auto;
    border-radius: 50% 10% 50% 10%;
    border: 4px solid #16a34a;
}

/* TEXT LARGE BLOCKS */
.WogihiyGuide_Txt_Large_Block {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.WogihiyGuide_Alt_Bg {
    background-color: #e8f9ee;
    max-width: 100%;
    padding: 6rem 2rem;
}

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

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

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

.WogihiyGuide_Bullet_List li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    font-weight: 600;
}

.WogihiyGuide_Bullet_List li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

/* CHECKLIST */
.WogihiyGuide_Chk_Item_Wrp {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.WogihiyGuide_Chk_Item_Unit {
    display: flex;
    gap: 1.5rem;
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #00ffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.WogihiyGuide_Chk_Item_Num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #86efac;
    opacity: 0.5;
    line-height: 1;
}

.WogihiyGuide_Chk_Item_H {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #052e16;
}

/* SERVICES PRICE */
.WogihiyGuide_Serv_Price_Sec {
    padding: 6rem 2rem;
    background-color: #052e16;
    color: #f0fdf4;
}

.WogihiyGuide_Serv_Price_Sec .WogihiyGuide_Sec_Head_Lvl2 {
    color: #ffffff;
}

.WogihiyGuide_Price_Grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.WogihiyGuide_Price_Card {
    background: #0d3d1f;
    padding: 3rem 2rem;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #16a34a;
}

.WogihiyGuide_Card_Accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: #16a34a;
}

.WogihiyGuide_Card_Featured {
    transform: scale(1.05);
    border: 1px solid #00ffff;
    box-shadow: 0 10px 30px rgba(0,255,255,0.1);
}

.WogihiyGuide_Card_Featured .WogihiyGuide_Card_Accent {
    background: #00ffff;
    box-shadow: 0 0 10px #00ffff;
}

.WogihiyGuide_Card_Title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.WogihiyGuide_Card_Val {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00ffff;
    margin-bottom: 2rem;
}

.WogihiyGuide_Card_Feat {
    list-style: none;
    text-align: center;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.WogihiyGuide_Card_Feat li {
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.WogihiyGuide_Card_Btn {
    text-decoration: none;
    background: transparent;
    color: #00ffff;
    border: 2px solid #00ffff;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s;
}

.WogihiyGuide_Card_Btn:hover {
    background: #00ffff;
    color: #052e16;
}

/* FAQ */
.WogihiyGuide_FAQ_Main_Sec {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.WogihiyGuide_FAQ_Accordion_Box {
    margin-top: 3rem;
}

.WogihiyGuide_FAQ_Item {
    border-bottom: 1px solid #86efac;
    padding: 1rem 0;
}

.WogihiyGuide_FAQ_Summ {
    list-style: none;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.WogihiyGuide_FAQ_Summ::-webkit-details-marker {
    display: none;
}

.WogihiyGuide_FAQ_Arrow {
    width: 20px;
    height: 20px;
    border-right: 3px solid #16a34a;
    border-bottom: 3px solid #16a34a;
    transform: rotate(45deg);
    transition: transform 0.3s;
}

details[open] .WogihiyGuide_FAQ_Arrow {
    transform: rotate(-135deg);
}

.WogihiyGuide_FAQ_Body {
    padding: 1rem 0 2rem;
    color: #333;
}

/* FOR WHOM */
.WogihiyGuide_Audi_Outer_Sec {
    padding: 6rem 2rem;
    background-color: #f0fdf4;
}

.WogihiyGuide_Audi_Intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
}

.WogihiyGuide_Audi_Grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.WogihiyGuide_Audi_Card {
    background: #ffffff;
    padding: 2.5rem;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: translateY -10px;
}

.WogihiyGuide_Audi_Icon {
    margin-bottom: 1.5rem;
    border-radius: 50%;
}

.WogihiyGuide_Audi_H4 {
    margin-bottom: 1rem;
    color: #16a34a;
}

/* PRACTITIONER */
.WogihiyGuide_Pract_Expert_Sec {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.WogihiyGuide_Pract_Innr_Flex {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.WogihiyGuide_Pract_Img_Col {
    flex: 1;
}

.WogihiyGuide_Pract_Main_Img {
    width: 100%;
    border-radius: 15px;
}

.WogihiyGuide_Pract_Txt_Col {
    flex: 1.5;
}

.WogihiyGuide_Pract_Quote {
    font-size: 1.8rem;
    font-style: italic;
    color: #16a34a;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
    border-left: 6px solid #00ffff;
}

.WogihiyGuide_Pract_Name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #052e16;
}

.WogihiyGuide_Pract_Bio {
    margin-top: 1rem;
    color: #555;
}

/* CONTACT FORM */
.WogihiyGuide_Form_Main_Sec {
    padding: 6rem 2rem;
    background-color: #e8f9ee;
}

.WogihiyGuide_Form_Innr_Cont {
    max-width: 700px;
    margin: 0 auto;
}

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

.WogihiyGuide_Form_Action_Box {
    background: #ffffff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.WogihiyGuide_Form_Group {
    margin-bottom: 1.5rem;
}

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

.WogihiyGuide_Form_Input, .WogihiyGuide_Form_Textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #86efac;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.WogihiyGuide_Form_Textarea {
    height: 150px;
    resize: vertical;
}

.WogihiyGuide_Form_Checkbox_Wrp {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 2rem;
}

.WogihiyGuide_Form_Check_Lbl {
    font-size: 0.9rem;
}

.WogihiyGuide_Form_Submit_Btn {
    width: 100%;
    padding: 1.2rem;
    background: #052e16;
    color: #00ffff;
    border: 2px solid #00ffff;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.WogihiyGuide_Form_Submit_Btn:hover {
    background: #00ffff;
    color: #052e16;
    box-shadow: 0 0 20px #00ffff;
}

/* FOOTER */
.WogihiyGuide_Foot_Main_Wrap {
    background-color: #052e16;
    color: #86efac;
    padding: 5rem 2rem;
}

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

.WogihiyGuide_Foot_Logo_Box {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #f0fdf4;
}

.WogihiyGuide_Foot_Copy_Text {
    margin-bottom: 1rem;
}

.WogihiyGuide_Foot_Email, .WogihiyGuide_Foot_Phone {
    margin-bottom: 0.5rem;
}

.WogihiyGuide_Foot_Email a {
    color: #00ffff;
    text-decoration: none;
}

.WogihiyGuide_Foot_Links_Box {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.WogihiyGuide_Foot_Link {
    color: #86efac;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid transparent;
}

.WogihiyGuide_Foot_Link:hover {
    color: #00ffff;
    border-bottom-color: #00ffff;
}

/* RESPONSIVENESS */
@media (max-width: 1024px) {
    .WogihiyGuide_Hero_Cont_Flex, 
    .WogihiyGuide_Prac_Stats_Flex,
    .WogihiyGuide_Pract_Innr_Flex {
        flex-direction: column;
        text-align: center;
    }
    
    .WogihiyGuide_Sec_Head_Lvl2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .WogihiyGuide_Prac_Stats_Flex {
        flex-direction: column;
    }

    .WogihiyGuide_Hero_Main_Title {
        font-size: 2.8rem;
    }
    
    .WogihiyGuide_Chk_Item_Wrp {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .WogihiyGuide_Nav_Burg_Btn {
        display: flex;
    }

    .WogihiyGuide_Head_Nav_Menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #052e16;
        padding: 2rem;
    }

    .WogihiyGuide_Nav_Toggl_Inp:checked ~ .WogihiyGuide_Head_Nav_Menu {
        display: block;
    }

    .WogihiyGuide_Head_Nav_List {
        flex-direction: column;
        align-items: center;
    }

    .WogihiyGuide_Price_Card {
        transform: none !important;
    }
}