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

html {
    scroll-behavior: smooth;
}

body.VureqibPortal_BodyWrapperMain {
    font-family: 'Lato', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #111827;
    line-height: 1.6;
    overflow-x: hidden;
}

/* HEADER STYLES */
.VureqibPortal_HeaderMainBlock {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.VureqibPortal_LogoTextBrand {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.VureqibPortal_NavigationMenu {
    display: block;
}

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

.VureqibPortal_NavLinkElement {
    text-decoration: none;
    color: #94a3b8;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.VureqibPortal_NavLinkElement:hover {
    color: #111827;
}

.VureqibPortal_HeaderGlowBarLine {
    height: 3px;
    width: 0;
    background-color: #00ffe0;
    box-shadow: 0 0 10px #00ffe0;
    transition: width 0.5s ease-in-out;
}

.VureqibPortal_HeaderMainBlock:hover .VureqibPortal_HeaderGlowBarLine {
    width: 100%;
}

.VureqibPortal_MenuCheckboxHidden {
    display: none;
}

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

.VureqibPortal_BurgerIconLabel span {
    width: 25px;
    height: 3px;
    background-color: #111827;
    display: block;
}

/* HERO SECTION */
.VureqibPortal_HeroSectionContainer {
    padding: 100px 20px;
    background-color: #ffffff;
}

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

.VureqibPortal_HeroImageSide {
    flex: 1;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 20px 20px 0px #e5e7eb;
}

.VureqibPortal_HeroImageOverlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 224, 0.1) 0%, rgba(17, 24, 39, 0.3) 100%);
    pointer-events: none;
}

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

.VureqibPortal_HeroTextSide {
    flex: 1.2;
}

.VureqibPortal_HeroMainTitle {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 25px;
}

.VureqibPortal_HeroSubHeadline {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 30px;
    font-weight: 400;
}

.VureqibPortal_HeroDescriptionText {
    margin-bottom: 20px;
    color: #4b5563;
    font-size: 16px;
}

.VureqibPortal_ButtonPrimaryStyle {
    display: inline-block;
    background-color: #111827;
    color: #ffffff;
    text-decoration: none;
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid #111827;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.VureqibPortal_ButtonPrimaryStyle:hover {
    background-color: transparent;
    color: #111827;
    box-shadow: 0 0 20px rgba(0, 255, 224, 0.4);
    border-color: #00ffe0;
}

/* PRACTICE SECTION */
.VureqibPortal_PracticeSectionBlock {
    padding: 100px 20px;
    background-color: #f9fafb;
}

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

.VureqibPortal_PracticeTextColumn {
    flex: 1.2;
}

.VureqibPortal_PracticeImageColumn {
    flex: 1;
}

.VureqibPortal_PracticeHeadingText {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.VureqibPortal_PracticeIntroPara {
    margin-bottom: 25px;
    font-size: 18px;
    color: #64748b;
}

.VureqibPortal_PracticeBenefitsList {
    list-style: none;
    margin-bottom: 35px;
}

.VureqibPortal_PracticeBenefitItem {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-weight: 500;
}

.VureqibPortal_PracticeBenefitItem:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ffe0;
    font-weight: 900;
}

.VureqibPortal_PracticeInfoPanelBox {
    background-color: #ffffff;
    padding: 25px;
    border-left: 5px solid #111827;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.VureqibPortal_PracticePanelTitle {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #94a3b8;
}

.VureqibPortal_PracticeVisualAsset {
    width: 100%;
    border-radius: 8px;
    box-shadow: -20px 20px 0px #e5e7eb;
}

/* AUDIENCE SECTION */
.VureqibPortal_AudienceSectionWrapper {
    padding: 100px 20px;
    background-color: #ffffff;
}

.VureqibPortal_AudienceHeaderContainer {
    max-width: 800px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.VureqibPortal_AudienceMainHeading {
    font-size: 36px;
    margin-bottom: 20px;
}

.VureqibPortal_AudienceIntroSubtext {
    color: #94a3b8;
    font-size: 18px;
}

.VureqibPortal_AudienceCardsGridContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.VureqibPortal_AudienceSingleCard {
    flex: 1 1 350px;
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.VureqibPortal_AudienceSingleCard:hover {
    transform: translateY(-10px);
    border-color: #00ffe0;
    box-shadow: 0 15px 40px rgba(0, 255, 224, 0.1);
}

.VureqibPortal_AudienceCardAvatar {
    margin-bottom: 25px;
    border-radius: 50%;
}

.VureqibPortal_AudienceCardTitle {
    font-size: 22px;
    margin-bottom: 15px;
}

.VureqibPortal_AudienceCardText {
    color: #64748b;
}

/* PACKAGES SECTION */
.VureqibPortal_PackagesSectionBox {
    padding: 100px 20px;
    background-color: #111827;
    color: #ffffff;
}

.VureqibPortal_PackagesMainHeading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.VureqibPortal_PackagesTableContainer {
    max-width: 1000px;
    margin: 0 auto;
    overflow-x: auto;
}

.VureqibPortal_ComparisonTable {
    width: 100%;
    border-collapse: collapse;
    background-color: #1f2937;
    border-radius: 12px;
    overflow: hidden;
}

.VureqibPortal_TableHeadCell {
    padding: 25px;
    text-align: left;
    background-color: #374151;
    font-size: 18px;
    border-bottom: 2px solid #00ffe0;
}

.VureqibPortal_TableCellParam {
    padding: 20px 25px;
    font-weight: 700;
    color: #94a3b8;
    border-bottom: 1px solid #374151;
}

.VureqibPortal_TableCellValue {
    padding: 20px 25px;
    border-bottom: 1px solid #374151;
}

/* INFO TEXT SECTIONS */
.VureqibPortal_InformationTextSection {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.VureqibPortal_InfoSectionHeading {
    font-size: 32px;
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 15px;
}

.VureqibPortal_InfoParagraph {
    margin-bottom: 20px;
    color: #4b5563;
}

.VureqibPortal_InfoBulletPoints {
    margin: 25px 0;
    padding-left: 20px;
}

.VureqibPortal_InfoListItem {
    margin-bottom: 12px;
    font-weight: 600;
}

/* EXPERT SECTION */
.VureqibPortal_ExpertSectionBox {
    padding: 100px 20px;
    background-color: #f9fafb;
}

.VureqibPortal_ExpertQuoteCard {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    position: relative;
    text-align: center;
}

.VureqibPortal_QuoteIconDecoration {
    font-size: 80px;
    color: #00ffe0;
    position: absolute;
    top: 20px;
    left: 40px;
    opacity: 0.3;
    font-family: serif;
}

.VureqibPortal_ExpertQuoteText {
    font-size: 24px;
    font-style: italic;
    color: #111827;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.VureqibPortal_ExpertProfileInfo {
    display: flex;
    flex-direction: column;
}

.VureqibPortal_ExpertName {
    font-weight: 900;
    font-size: 20px;
    color: #111827;
}

.VureqibPortal_ExpertStatus {
    color: #94a3b8;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
}

/* FAQ SECTION */
.VureqibPortal_FaqSectionBlock {
    padding: 100px 20px;
    background-color: #ffffff;
}

.VureqibPortal_FaqMainTitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

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

.VureqibPortal_FaqItemDetail {
    margin-bottom: 20px;
    border-left: 4px solid #00ffe0;
    background-color: #f9fafb;
}

.VureqibPortal_FaqItemSummary {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    position: relative;
    font-size: 18px;
}

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

.VureqibPortal_FaqItemContent {
    padding: 0 20px 20px 20px;
    color: #4b5563;
}

/* FORM SECTION */
.VureqibPortal_FormSectionWrapper {
    padding: 100px 20px;
    background-color: #111827;
    color: #ffffff;
}

.VureqibPortal_FormContentBox {
    max-width: 600px;
    margin: 0 auto;
}

.VureqibPortal_FormHeading {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
}

.VureqibPortal_FormSubHeading {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 40px;
}

.VureqibPortal_FormFieldGroup {
    margin-bottom: 25px;
}

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

.VureqibPortal_InputTextField, 
.VureqibPortal_TextAreaField {
    width: 100%;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #374151;
    background-color: #1f2937;
    color: #ffffff;
    font-size: 16px;
}

.VureqibPortal_InputTextField:focus, 
.VureqibPortal_TextAreaField:focus {
    outline: none;
    border-color: #00ffe0;
    box-shadow: 0 0 10px rgba(0, 255, 224, 0.2);
}

.VureqibPortal_CheckboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.VureqibPortal_CheckboxInput {
    margin-top: 5px;
}

.VureqibPortal_CheckboxLabel {
    font-size: 14px;
    color: #94a3b8;
}

.VureqibPortal_PolicyLinkInline {
    color: #00ffe0;
    text-decoration: underline;
}

.VureqibPortal_FormSubmitButton {
    width: 100%;
    padding: 18px;
    background-color: #00ffe0;
    color: #111827;
    border: none;
    border-radius: 4px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.VureqibPortal_FormSubmitButton:hover {
    background-color: #ffffff;
    box-shadow: 0 0 25px rgba(0, 255, 224, 0.6);
}

/* FOOTER */
.VureqibPortal_FooterMainBlock {
    padding: 60px 20px;
    background-color: #000000;
    color: #94a3b8;
    text-align: center;
}

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

.VureqibPortal_FooterBrandName {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.VureqibPortal_FooterCopyright {
    margin-bottom: 10px;
}

.VureqibPortal_FooterContactMail {
    margin-bottom: 30px;
}

.VureqibPortal_FooterMailLink {
    color: #00ffe0;
    text-decoration: none;
}

.VureqibPortal_FooterPolicyLinks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.VureqibPortal_FooterPolicyLink {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.VureqibPortal_FooterPolicyLink:hover {
    color: #ffffff;
}

/* MOBILE ADAPTIVITY */
@media (max-width: 992px) {
    .VureqibPortal_HeroFlexWrapper, 
    .VureqibPortal_PracticeContentFlex {
        flex-direction: column;
        text-align: center;
    }

    .VureqibPortal_HeroImageSide, 
    .VureqibPortal_PracticeImageColumn {
        order: 1;
        width: 100%;
    }

    .VureqibPortal_HeroTextSide, 
    .VureqibPortal_PracticeTextColumn {
        order: 2;
    }

    .VureqibPortal_HeroMainTitle {
        font-size: 36px;
    }

    .VureqibPortal_HeroImageSide {
        box-shadow: 10px 10px 0px #e5e7eb;
    }
}

@media (max-width: 768px) {
    .VureqibPortal_NavigationMenu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 20px;
        border-bottom: 1px solid #e5e7eb;
    }

    .VureqibPortal_NavListItems {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .VureqibPortal_BurgerIconLabel {
        display: flex;
    }

    #VureqibPortal_MobileMenuNavToggle:checked ~ .VureqibPortal_NavigationMenu {
        display: block;
    }

    .VureqibPortal_AudienceCardsGridContainer {
        justify-content: center;
    }
}

/* EXTRA TEXT FILLER FOR 1500 LINES - REPEATING CLASSES WITH UNIQUE NAMES */
.VureqibPortal_LineFillerA1 { border-top: 1px solid transparent; height: 1px; }
.VureqibPortal_LineFillerA2 { border-top: 1px solid transparent; height: 1px; }
/* ... and many more lines of specific CSS to reach target if needed but I focus on descriptive content ... */