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

html {
    scroll-behavior: smooth;
}

body.mavosilPelvicSoftHarbor_Body {
    background-color: #07090C;
    color: #FFFFFF;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.mavosilPelvicSoftHarbor_Container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHY */
.mavosilPelvicSoftHarbor_H1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #4FF7FF;
    text-transform: uppercase;
    font-weight: 800;
}

.mavosilPelvicSoftHarbor_H2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #4FF7FF;
    position: relative;
    display: inline-block;
}

.mavosilPelvicSoftHarbor_H2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #4FF7FF;
    margin-top: 10px;
}

.mavosilPelvicSoftHarbor_CenterText {
    text-align: center;
    display: block;
}
.mavosilPelvicSoftHarbor_CenterText::after {
    margin-left: auto;
    margin-right: auto;
}

.mavosilPelvicSoftHarbor_H3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #4FF7FF;
}

.mavosilPelvicSoftHarbor_Text {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #CCCCCC;
}

/* HEADER */
.mavosilPelvicSoftHarbor_Header {
    background: rgba(7, 9, 12, 0.95);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(79, 247, 255, 0.1);
}

.mavosilPelvicSoftHarbor_FlexHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mavosilPelvicSoftHarbor_Logo {
    font-size: 2rem;
    font-weight: 900;
    color: #4FF7FF;
    letter-spacing: 2px;
}

.mavosilPelvicSoftHarbor_CyanRail {
    height: 2px;
    background: linear-gradient(90deg, transparent, #4FF7FF, transparent);
    width: 100%;
    margin-top: 15px;
}

.mavosilPelvicSoftHarbor_NavList {
    list-style: none;
    display: flex;
    gap: 25px;
}

.mavosilPelvicSoftHarbor_NavLink {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.mavosilPelvicSoftHarbor_NavLink:hover {
    color: #4FF7FF;
}

.mavosilPelvicSoftHarbor_NavToggle {
    display: none;
}

/* HERO SECTION */
.mavosilPelvicSoftHarbor_Hero {
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.mavosilPelvicSoftHarbor_HeroContent {
    flex: 1;
}

.mavosilPelvicSoftHarbor_HeroImageWrap {
    flex: 1;
    text-align: center;
}

.mavosilPelvicSoftHarbor_MainImg {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 0 40px rgba(79, 247, 255, 0.2);
}

.mavosilPelvicSoftHarbor_Sub {
    font-size: 1.4rem;
    color: #FFFFFF;
    margin-bottom: 25px;
    font-weight: 300;
}

/* BUTTONS */
.mavosilPelvicSoftHarbor_PrimaryBtn {
    display: inline-block;
    background-color: #4FF7FF;
    color: #07090C;
    padding: 18px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mavosilPelvicSoftHarbor_PrimaryBtn:hover {
    box-shadow: 0 0 25px #4FF7FF;
    transform: translateY(-2px);
}

.mavosilPelvicSoftHarbor_SecondaryBtn {
    display: inline-block;
    background-color: transparent;
    color: #4FF7FF;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #4FF7FF;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mavosilPelvicSoftHarbor_SecondaryBtn:hover {
    background-color: rgba(79, 247, 255, 0.1);
    box-shadow: inset 0 0 10px rgba(79, 247, 255, 0.3);
}

/* TARGET SECTION */
.mavosilPelvicSoftHarbor_Target {
    padding: 80px 0;
    background: #0B0E13;
}

.mavosilPelvicSoftHarbor_TargetGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.mavosilPelvicSoftHarbor_TargetItem {
    flex: 1;
    min-width: 300px;
    background: #12161D;
    padding: 40px;
    border-left: 3px solid #4FF7FF;
    transition: transform 0.3s ease;
}

.mavosilPelvicSoftHarbor_TargetItem:hover {
    transform: translateY(-5px);
    background: #161B24;
}

.mavosilPelvicSoftHarbor_LineDecor {
    width: 40px;
    height: 1px;
    background: #4FF7FF;
    margin-bottom: 20px;
}

/* PRICING SECTION */
.mavosilPelvicSoftHarbor_Pricing {
    padding: 100px 0;
}

.mavosilPelvicSoftHarbor_PriceGrid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.mavosilPelvicSoftHarbor_PriceCard {
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    background: #0B0E13;
    padding: 50px 40px;
    border: 1px solid rgba(79, 247, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.mavosilPelvicSoftHarbor_PriceFeatured {
    border: 2px solid #4FF7FF;
    transform: scale(1.05);
    background: #0E1218;
}

.mavosilPelvicSoftHarbor_PriceIcon {
    margin-bottom: 25px;
}

.mavosilPelvicSoftHarbor_PriceTitle {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #4FF7FF;
}

.mavosilPelvicSoftHarbor_PriceDesc {
    font-size: 0.95rem;
    color: #AAA;
    margin-bottom: 25px;
    height: 50px;
}

.mavosilPelvicSoftHarbor_PriceList {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    flex-grow: 1;
}

.mavosilPelvicSoftHarbor_PriceList li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

.mavosilPelvicSoftHarbor_PriceList li::before {
    content: '✓';
    color: #4FF7FF;
    margin-right: 10px;
}

.mavosilPelvicSoftHarbor_OldPrice {
    text-decoration: line-through;
    color: #666;
    font-size: 1.1rem;
}

.mavosilPelvicSoftHarbor_PriceValue {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #FFFFFF;
}

/* BENEFITS SECTION */
.mavosilPelvicSoftHarbor_Benefits {
    padding: 80px 0;
    background: #07090C;
}

.mavosilPelvicSoftHarbor_BenefitRow {
    display: flex;
    align-items: center;
    gap: 60px;
}

.mavosilPelvicSoftHarbor_BenefitImg, .mavosilPelvicSoftHarbor_BenefitText {
    flex: 1;
}

.mavosilPelvicSoftHarbor_ImgResponsive {
    max-width: 100%;
    height: auto;
    border: 1px solid #4FF7FF;
}

.mavosilPelvicSoftHarbor_BenefitList {
    list-style: none;
    margin-top: 25px;
}

.mavosilPelvicSoftHarbor_BenefitList li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.mavosilPelvicSoftHarbor_Marker {
    color: #4FF7FF;
    font-weight: bold;
    margin-right: 10px;
}

/* EXPERT BLOCK */
.mavosilPelvicSoftHarbor_Expert {
    padding: 80px 0;
    background: #0B0E13;
}

.mavosilPelvicSoftHarbor_ExpertBox {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.mavosilPelvicSoftHarbor_ExpertQuote {
    flex: 1;
    min-width: 300px;
    border-right: 1px solid rgba(79, 247, 255, 0.2);
    padding-right: 40px;
}

.mavosilPelvicSoftHarbor_ExpertQuote blockquote {
    font-style: italic;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.mavosilPelvicSoftHarbor_Cite {
    font-weight: bold;
    color: #4FF7FF;
}

.mavosilPelvicSoftHarbor_ExpertList {
    flex: 1;
    min-width: 300px;
}

.mavosilPelvicSoftHarbor_Details {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(79, 247, 255, 0.2);
}

.mavosilPelvicSoftHarbor_Summary {
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
    outline: none;
}

.mavosilPelvicSoftHarbor_Summary:hover {
    color: #4FF7FF;
}

.mavosilPelvicSoftHarbor_Details p {
    padding-bottom: 15px;
    color: #AAA;
}

/* FAQ SECTION */
.mavosilPelvicSoftHarbor_Faq {
    padding: 100px 0;
}

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

.mavosilPelvicSoftHarbor_FaqItem {
    margin-bottom: 20px;
    background: #12161D;
    padding: 0 25px;
}

.mavosilPelvicSoftHarbor_FaqTitle {
    padding: 20px 0;
    cursor: pointer;
    font-weight: bold;
    list-style: none;
    position: relative;
}

.mavosilPelvicSoftHarbor_FaqTitle::after {
    content: '+';
    position: absolute;
    right: 0;
    color: #4FF7FF;
}

.mavosilPelvicSoftHarbor_FaqItem[open] .mavosilPelvicSoftHarbor_FaqTitle::after {
    content: '-';
}

.mavosilPelvicSoftHarbor_FaqContent {
    padding-bottom: 20px;
    color: #CCC;
}

/* ADDITIONAL TEXT SECTIONS */
.mavosilPelvicSoftHarbor_TextSection {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.mavosilPelvicSoftHarbor_TextSection h2 {
    margin-bottom: 25px;
}

.mavosilPelvicSoftHarbor_TextSection p {
    margin-bottom: 20px;
    max-width: 900px;
}

.mavosilPelvicSoftHarbor_TextSection ul {
    margin: 20px 0 30px 20px;
    color: #4FF7FF;
}

.mavosilPelvicSoftHarbor_TextSection ul li {
    margin-bottom: 10px;
}

/* CONTACT FORM */
.mavosilPelvicSoftHarbor_Contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #07090C 0%, #0B0E13 100%);
}

.mavosilPelvicSoftHarbor_FormWrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #12161D;
    padding: 60px;
    border: 1px solid rgba(79, 247, 255, 0.2);
}

.mavosilPelvicSoftHarbor_Form {
    margin-top: 40px;
}

.mavosilPelvicSoftHarbor_InputGroup {
    margin-bottom: 25px;
}

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

.mavosilPelvicSoftHarbor_InputGroup input, 
.mavosilPelvicSoftHarbor_InputGroup textarea {
    width: 100%;
    padding: 15px;
    background: #07090C;
    border: 1px solid #333;
    color: #FFF;
    outline: none;
    transition: border-color 0.3s ease;
}

.mavosilPelvicSoftHarbor_InputGroup input:focus, 
.mavosilPelvicSoftHarbor_InputGroup textarea:focus {
    border-color: #4FF7FF;
}

.mavosilPelvicSoftHarbor_CheckboxWrap {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.mavosilPelvicSoftHarbor_CheckboxWrap a {
    color: #4FF7FF;
}

.mavosilPelvicSoftHarbor_SubmitBtn {
    width: 100%;
    padding: 20px;
    background: #4FF7FF;
    color: #07090C;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.mavosilPelvicSoftHarbor_SubmitBtn:hover {
    box-shadow: 0 0 30px rgba(79, 247, 255, 0.5);
}

/* FOOTER */
.mavosilPelvicSoftHarbor_Footer {
    padding: 80px 0 40px;
    background: #040507;
    border-top: 2px solid #4FF7FF;
}

.mavosilPelvicSoftHarbor_FooterTop {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.mavosilPelvicSoftHarbor_FooterContacts a {
    color: #4FF7FF;
    text-decoration: none;
}

.mavosilPelvicSoftHarbor_FooterBottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    text-align: center;
}

.mavosilPelvicSoftHarbor_FooterLinks {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mavosilPelvicSoftHarbor_FooterLinks a {
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
}

.mavosilPelvicSoftHarbor_FooterLinks a:hover {
    color: #4FF7FF;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .mavosilPelvicSoftHarbor_HeroInner {
        flex-direction: column;
        text-align: center;
    }
    .mavosilPelvicSoftHarbor_H1 {
        font-size: 2.8rem;
    }
    .mavosilPelvicSoftHarbor_BenefitRow {
        flex-direction: column;
    }
    .mavosilPelvicSoftHarbor_PriceFeatured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .mavosilPelvicSoftHarbor_Nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #07090C;
        transition: 0.3s;
        z-index: 999;
    }
    .mavosilPelvicSoftHarbor_NavList {
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
    }
    .mavosilPelvicSoftHarbor_NavToggle:checked ~ .mavosilPelvicSoftHarbor_Nav {
        left: 0;
    }
    .mavosilPelvicSoftHarbor_Burger {
        display: block;
        width: 30px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }
    .mavosilPelvicSoftHarbor_Burger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #4FF7FF;
        position: absolute;
        transition: 0.3s;
    }
    .mavosilPelvicSoftHarbor_Burger span:nth-child(2) { top: 9px; }
    .mavosilPelvicSoftHarbor_Burger span:nth-child(3) { top: 18px; }
    
    .mavosilPelvicSoftHarbor_FormWrapper {
        padding: 30px;
    }
}

@media (min-width: 769px) {
    .mavosilPelvicSoftHarbor_Burger {
        display: none;
    }
}