/* Base Styles & Typography */
body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000F2B; /* Cold ink-navy background */
    color: #D9FAFF; /* Ice-blue text for general content */
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *::before, *::after {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #D9FAFF; /* Ice-blue headings */
    margin-top: 0;
    margin-bottom: 0.8em;
}

h1 {
    font-size: clamp(2.5em, 6vw, 4.5em);
    line-height: 1.1;
}

h2 {
    font-size: clamp(2em, 5vw, 3.5em);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.5em, 4vw, 2.5em);
    line-height: 1.3;
}

p {
    margin-bottom: 1em;
}

a {
    color: #00bcd4; /* A slightly brighter blue for links */
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #88eeff;
    text-shadow: 0 0 5px rgba(136, 238, 255, 0.7);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Reusable Components - Buttons */
.qelmoradixPrimaryButtonStl,
.qelmoradixSecondaryButtonStl {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: clamp(0.9em, 2.5vw, 1.1em);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.qelmoradixPrimaryButtonStl {
    background-color: #D9FAFF; /* Ice-blue */
    color: #000F2B; /* Dark text */
    border: 2px solid transparent;
    box-shadow: 0 0 15px rgba(217, 250, 255, 0.4);
}

.qelmoradixPrimaryButtonStl:hover {
    background-color: #B4F5FF;
    box-shadow: 0 0 25px rgba(217, 250, 255, 0.8), 0 0 50px rgba(217, 250, 255, 0.5); /* Ice glow */
    transform: translateY(-2px);
}

.qelmoradixSecondaryButtonStl {
    background-color: transparent;
    color: #D9FAFF; /* Ice-blue */
    border: 2px solid #D9FAFF; /* Ice outline */
    box-shadow: 0 0 10px rgba(217, 250, 255, 0.2);
}

.qelmoradixSecondaryButtonStl:hover {
    background-color: rgba(217, 250, 255, 0.1);
    box-shadow: 0 0 20px rgba(217, 250, 255, 0.6), 0 0 40px rgba(217, 250, 255, 0.3); /* Ice glow */
    transform: translateY(-2px);
}

/* Glass Panel Effect */
.qelmoradixGlassPanelStyle {
    background-color: rgba(0, 15, 43, 0.6); /* Slightly transparent dark blue */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(217, 250, 255, 0.2);
    border-radius: 12px;
    padding: clamp(20px, 5vw, 40px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Layout Containers */
.qelmoradixHeaderContentWrap,
.qelmoradixMainContentArea,
.qelmoradixFooterContentWrap,
.qelmoradixHeroContentGrid,
.qelmoradixAudienceContentPanel,
.qelmoradixBenefitsContentLayout,
.qelmoradixExpertContentContainer,
.qelmoradixPricingCardsContainer,
.qelmoradixFaqContainerLayout,
.qelmoradixExtraTextContainer,
.qelmoradixFormContainerContent {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Header */
.qelmoradixHeaderGlassEffect {
    background-color: rgba(0, 15, 43, 0.8); /* Dark header with glass effect */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(217, 250, 255, 0.3); /* Cold ice-line */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.qelmoradixBrandLogoTxt {
    font-size: clamp(1.8em, 4vw, 2.5em);
    font-weight: 700;
    color: #D9FAFF;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(217, 250, 255, 0.5);
    padding: 5px 0; /* Ensures it aligns with nav items */
}

/* Navigation - Desktop */
.qelmoradixMainNavMenuLink {
    display: block; /* Visible by default on desktop */
}

.qelmoradixNavListItems {
    display: flex;
    gap: 30px;
}

.qelmoradixNavLinkStyle {
    color: #D9FAFF;
    font-weight: 400;
    font-size: 1.05em;
    padding: 8px 0;
    position: relative;
}

.qelmoradixNavLinkStyle::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #D9FAFF;
    transition: width 0.3s ease;
}

.qelmoradixNavLinkStyle:hover::after {
    width: 100%;
}

/* Burger Menu - Mobile */
.qelmoradixBurgerHiddenCheck {
    display: none; /* Hide checkbox input */
}

.qelmoradixBurgerIconWrap {
    display: none; /* Hide burger icon by default */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001; /* Above other content when open */
    position: relative;
}

.qelmoradixBurgerLineElem {
    width: 100%;
    height: 3px;
    background-color: #D9FAFF;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Mobile Navigation Toggle */
@media (max-width: 900px) {
    .qelmoradixMainNavMenuLink {
        position: absolute;
        top: 100%; /* Position below header */
        left: 0;
        width: 100%;
        background-color: rgba(0, 15, 43, 0.95);
        backdrop-filter: blur(10px);
        transform: translateX(-100%);
        transition: transform 0.4s ease-out;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        padding: 20px 0;
        max-height: 0; /* Initially hidden */
        overflow: hidden;
        border-top: 1px solid rgba(217, 250, 255, 0.2);
    }

    .qelmoradixBurgerIconWrap {
        display: flex; /* Show burger icon on mobile */
    }

    .qelmoradixNavListItems {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .qelmoradixNavListItemLink {
        width: 100%;
        text-align: center;
    }

    .qelmoradixNavLinkStyle {
        display: block;
        padding: 10px 0;
        font-size: 1.2em;
        color: #B4F5FF;
    }
    .qelmoradixNavLinkStyle::after {
        height: 1px;
    }
    .qelmoradixNavLinkStyle:hover::after {
        width: 50%;
        margin-left: 25%;
    }


    /* Burger menu animation */
    .qelmoradixBurgerHiddenCheck:checked ~ .qelmoradixMainNavMenuLink {
        transform: translateX(0);
        max-height: 500px; /* Adjust as needed for menu height */
    }

    .qelmoradixBurgerHiddenCheck:checked + .qelmoradixBurgerIconWrap .qelmoradixBurgerLineElem:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .qelmoradixBurgerHiddenCheck:checked + .qelmoradixBurgerIconWrap .qelmoradixBurgerLineElem:nth-child(2) {
        opacity: 0;
    }
    .qelmoradixBurgerHiddenCheck:checked + .qelmoradixBurgerIconWrap .qelmoradixBurgerLineElem:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}


/* Hero Section */
.qelmoradixHeroBlockSection {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.qelmoradixHeroQuickLinksWrap {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.qelmoradixHeroQuickBtnLink {
    min-width: 150px;
}

.qelmoradixHeroContentGrid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.qelmoradixHeroImageContainer {
    flex: 1;
    min-width: 300px;
    position: relative;
    padding: 20px;
    background-color: rgba(0, 15, 43, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(217, 250, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.qelmoradixHeroVisualElement {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

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

.qelmoradixHeroMainTitleHead {
    margin-bottom: 20px;
}

.qelmoradixHeroSubheadText {
    font-size: 1.5em;
    font-weight: 300;
    color: #B4F5FF;
    margin-bottom: 25px;
}

.qelmoradixHeroIntroParagraph,
.qelmoradixHeroSecondParagraph {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #CCF8FF;
}

.qelmoradixHeroCtaButton {
    margin-top: 30px;
}

@media (max-width: 900px) {
    .qelmoradixHeroQuickLinksWrap {
        flex-direction: column;
        align-items: center;
    }
    .qelmoradixHeroContentGrid {
        flex-direction: column;
        text-align: center;
    }
    .qelmoradixHeroImageContainer {
        padding: 10px;
    }
}
@media (max-width: 600px) {
    .qelmoradixHeroBlockSection {
        padding: 40px 0;
    }
    .qelmoradixHeroQuickLinksWrap {
        margin-bottom: 30px;
    }
    .qelmoradixHeroQuickBtnLink {
        width: 100%;
    }
}


/* Audience Section */
.qelmoradixAudienceSectionBlock {
    padding: 80px 0;
}

.qelmoradixAudienceContentPanel {
    padding: clamp(30px, 6vw, 60px);
}

.qelmoradixAudienceSectionTitle {
    text-align: center;
    margin-bottom: 40px;
}

.qelmoradixAudienceIntroText {
    text-align: center;
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #CCF8FF;
}

.qelmoradixAudienceListGroup {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.qelmoradixAudienceListItem {
    font-size: 1.05em;
    padding: 15px 20px;
    background-color: rgba(0, 255, 255, 0.05); /* Light transparent ice */
    border-radius: 8px;
    border-left: 3px solid #00bcd4; /* Ice line for decor */
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qelmoradixAudienceListItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.3);
}

.qelmoradixIceLineDecor::before {
    content: '→'; /* Frosty arrow */
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #D9FAFF;
    font-size: 1.2em;
    opacity: 0.7;
}
.qelmoradixIceLineDecor {
    padding-left: 35px; /* Make space for arrow */
}


.qelmoradixAudienceOfferHint {
    text-align: center;
    margin-top: 50px;
    font-size: 1.3em;
    font-weight: 700;
    color: #B4F5FF; /* Brighter ice-blue for the hint */
    padding: 20px;
    border: 1px dashed rgba(217, 250, 255, 0.5);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(217, 250, 255, 0.3);
}

@media (max-width: 768px) {
    .qelmoradixAudienceSectionTitle {
        margin-bottom: 30px;
    }
    .qelmoradixAudienceIntroText {
        margin-bottom: 30px;
    }
    .qelmoradixAudienceListGroup {
        grid-template-columns: 1fr;
    }
}


/* Benefits Section */
.qelmoradixBenefitsSectionView {
    padding: 80px 0;
}

.qelmoradixBenefitsContentLayout {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.qelmoradixBenefitsContentLayout:last-of-type {
    margin-bottom: 0;
}

.qelmoradixBenefitsLayoutReverse {
    flex-direction: row-reverse;
}

.qelmoradixBenefitsTextPanel {
    flex: 1;
    min-width: 300px;
    padding: clamp(30px, 5vw, 50px);
}

.qelmoradixBenefitsTitleHeading,
.qelmoradixBenefitsSubTitle {
    margin-bottom: 25px;
}

.qelmoradixBenefitsIntroPara {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #CCF8FF;
}

.qelmoradixBenefitsFeatureList {
    margin-top: 20px;
}

.qelmoradixBenefitsListItem {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.05em;
    color: #E0FFFF;
}

.qelmoradixBenefitsListItem::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00bcd4; /* Ice-blue checkmark */
    font-weight: 700;
    font-size: 1.2em;
}

.qelmoradixBenefitsImageWrapper {
    flex: 1;
    min-width: 300px;
    background-color: rgba(0, 15, 43, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(217, 250, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 15px;
}

.qelmoradixBenefitsVisual {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    filter: brightness(0.95);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

@media (max-width: 900px) {
    .qelmoradixBenefitsContentLayout {
        flex-direction: column;
        text-align: center;
        margin-bottom: 60px;
    }
    .qelmoradixBenefitsLayoutReverse {
        flex-direction: column; /* Stays column, no reverse needed for display order */
    }
    .qelmoradixBenefitsListItem {
        text-align: left;
    }
}
@media (max-width: 600px) {
    .qelmoradixBenefitsSectionView {
        padding: 40px 0;
    }
    .qelmoradixBenefitsContentLayout {
        gap: 20px;
        margin-bottom: 40px;
    }
    .qelmoradixBenefitsTextPanel,
    .qelmoradixBenefitsImageWrapper {
        padding: 10px;
    }
}


/* Expert Section */
.qelmoradixExpertSectionArea {
    padding: 80px 0;
}

.qelmoradixExpertContentContainer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(30px, 6vw, 60px);
}

.qelmoradixExpertTitleHeader {
    margin-bottom: 40px;
}

.qelmoradixExpertQuoteText {
    font-style: italic;
    font-size: 1.3em;
    line-height: 1.7;
    margin: 0 auto 30px auto;
    max-width: 700px;
    color: #E0FFFF;
    position: relative;
    padding: 20px;
    border-left: 5px solid #00bcd4; /* Ice accent */
    background-color: rgba(0, 255, 255, 0.03);
    border-radius: 8px;
}

.qelmoradixQuoteParagraph::before {
    content: '“';
    font-size: 3em;
    position: absolute;
    left: 10px;
    top: 0;
    color: rgba(217, 250, 255, 0.4);
}
.qelmoradixQuoteParagraph::after {
    content: '”';
    font-size: 3em;
    position: absolute;
    right: 10px;
    bottom: -0.5em;
    color: rgba(217, 250, 255, 0.4);
}


.qelmoradixQuoteAuthorInfo {
    display: block;
    margin-top: 20px;
    font-weight: 700;
    font-size: 1.1em;
    color: #B4F5FF;
}

.qelmoradixExpertDisclosureGroup {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.qelmoradixExpertDetailsElement {
    background-color: rgba(0, 15, 43, 0.7); /* Slightly darker glass */
    border: 1px solid rgba(217, 250, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.qelmoradixExpertSummaryText {
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 700;
    color: #D9FAFF;
    cursor: pointer;
    background-color: rgba(0, 255, 255, 0.08); /* Light blue tint */
    border-bottom: 1px solid rgba(217, 250, 255, 0.1);
    position: relative;
    transition: background-color 0.3s ease;
}

.qelmoradixExpertSummaryText::marker,
.qelmoradixExpertSummaryText::-webkit-details-marker {
    display: none;
}

.qelmoradixExpertSummaryText::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.qelmoradixExpertDetailsElement[open] .qelmoradixExpertSummaryText::after {
    content: '−';
    transform: translateY(-50%) rotate(45deg); /* Slightly rotated minus */
}

.qelmoradixExpertSummaryText:hover {
    background-color: rgba(0, 255, 255, 0.15);
}

.qelmoradixExpertDetailsContent {
    padding: 20px 25px;
    font-size: 1.05em;
    line-height: 1.7;
    color: #E0FFFF;
    border-top: 1px solid rgba(217, 250, 255, 0.05);
}

.qelmoradixExpertDetailsPara {
    margin-bottom: 15px;
}

.qelmoradixExpertDetailsList {
    list-style: disc; /* Use standard list style for bullet points */
    margin-left: 25px;
    margin-top: 10px;
    color: #CCF8FF;
}

.qelmoradixExpertDetailsListItem {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .qelmoradixExpertTitleHeader {
        margin-bottom: 30px;
    }
    .qelmoradixExpertQuoteText {
        font-size: 1.15em;
        padding: 15px;
    }
    .qelmoradixQuoteParagraph::before,
    .qelmoradixQuoteParagraph::after {
        font-size: 2em;
    }
    .qelmoradixExpertSummaryText {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .qelmoradixExpertSummaryText::after {
        right: 15px;
        font-size: 1.2em;
    }
    .qelmoradixExpertDetailsContent {
        padding: 15px 20px;
        font-size: 1em;
    }
}


/* Pricing Section */
.qelmoradixPricingSectionLayout {
    padding: 80px 0;
    text-align: center;
}

.qelmoradixPricingHeaderTitle {
    margin-bottom: 20px;
}

.qelmoradixPricingIntroText {
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #CCF8FF;
}

.qelmoradixPricingQuickLinksMenu {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.qelmoradixPricingQuickLink {
    min-width: 150px;
}

.qelmoradixPricingCardsContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.qelmoradixPricingCardItem {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qelmoradixPricingCardItem:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.4);
}

.qelmoradixPricingCardTitle {
    font-size: 2em;
    margin-bottom: 20px;
    color: #B4F5FF;
}

.qelmoradixPricingCardPrice {
    font-size: 2.8em;
    font-weight: 700;
    color: #00bcd4; /* Accent ice-blue */
    margin-bottom: 25px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    line-height: 1;
}

.qelmoradixPriceValue {
    font-size: 1em; /* Retain original size */
}

.qelmoradixPriceTerm {
    font-size: 0.4em;
    font-weight: 400;
    color: #CCF8FF;
    transform: translateY(-5px); /* Align term visually */
}

.qelmoradixPricingFeatureList {
    margin-bottom: 30px;
    text-align: left;
    width: 100%;
    flex-grow: 1; /* Make list take available space */
}

.qelmoradixPricingFeatureItem {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 1em;
    color: #E0FFFF;
}

.qelmoradixPricingFeatureItem::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #D9FAFF; /* Ice-blue bullet */
    font-size: 1.2em;
    line-height: 1;
}

.qelmoradixPricingCardButton {
    margin-top: auto; /* Push button to the bottom */
    width: 80%;
}

@media (max-width: 768px) {
    .qelmoradixPricingSectionLayout {
        padding: 40px 0;
    }
    .qelmoradixPricingIntroText {
        margin-bottom: 30px;
    }
    .qelmoradixPricingQuickLinksMenu {
        margin-bottom: 40px;
        flex-direction: column;
        align-items: center;
    }
    .qelmoradixPricingQuickLink {
        width: 100%;
    }
    .qelmoradixPricingCardsContainer {
        grid-template-columns: 1fr;
    }
}


/* FAQ Section */
.qelmoradixFaqSectionWrapper {
    padding: 80px 0;
}

.qelmoradixFaqContainerLayout {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(30px, 6vw, 60px);
}

.qelmoradixFaqMainHeading {
    text-align: center;
    margin-bottom: 40px;
}

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

.qelmoradixFaqDetailsItem {
    background-color: rgba(0, 15, 43, 0.7);
    border: 1px solid rgba(217, 250, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.qelmoradixFaqSummaryQuestion {
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 700;
    color: #D9FAFF;
    cursor: pointer;
    background-color: rgba(0, 255, 255, 0.08);
    border-bottom: 1px solid rgba(217, 250, 255, 0.1);
    position: relative;
    transition: background-color 0.3s ease;
}

.qelmoradixFaqSummaryQuestion::marker,
.qelmoradixFaqSummaryQuestion::-webkit-details-marker {
    display: none;
}

.qelmoradixFaqSummaryQuestion::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.qelmoradixFaqDetailsItem[open] .qelmoradixFaqSummaryQuestion::after {
    content: '−';
    transform: translateY(-50%) rotate(45deg);
}

.qelmoradixFaqSummaryQuestion:hover {
    background-color: rgba(0, 255, 255, 0.15);
}

.qelmoradixFaqAnswerText {
    padding: 20px 25px;
    font-size: 1em;
    line-height: 1.7;
    color: #E0FFFF;
    border-top: 1px solid rgba(217, 250, 255, 0.05);
}

@media (max-width: 768px) {
    .qelmoradixFaqSectionWrapper {
        padding: 40px 0;
    }
    .qelmoradixFaqMainHeading {
        margin-bottom: 30px;
    }
    .qelmoradixFaqSummaryQuestion {
        padding: 15px 20px;
        font-size: 1.05em;
    }
    .qelmoradixFaqSummaryQuestion::after {
        right: 15px;
        font-size: 1.2em;
    }
    .qelmoradixFaqAnswerText {
        padding: 15px 20px;
        font-size: 0.95em;
    }
}


/* Extra Text Sections */
.qelmoradixExtraTextSection {
    padding: 60px 0;
}

.qelmoradixExtraTextContainer {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(30px, 6vw, 50px);
}

.qelmoradixExtraSectionTitle {
    text-align: center;
    margin-bottom: 30px;
}

.qelmoradixExtraSectionSubTitle {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #B4F5FF;
}

.qelmoradixExtraSectionParagraph {
    font-size: 1.1em;
    margin-bottom: 1.2em;
    line-height: 1.7;
    color: #E0FFFF;
}

.qelmoradixExtraSectionList {
    margin-top: 20px;
    margin-left: 20px;
    color: #CCF8FF;
    list-style: disc;
}

.qelmoradixExtraSectionListItem {
    margin-bottom: 10px;
    font-size: 1.05em;
}

@media (max-width: 768px) {
    .qelmoradixExtraTextSection {
        padding: 30px 0;
    }
    .qelmoradixExtraTextContainer {
        padding: clamp(20px, 4vw, 30px);
    }
    .qelmoradixExtraSectionTitle {
        margin-bottom: 20px;
    }
    .qelmoradixExtraSectionSubTitle {
        margin-top: 30px;
    }
    .qelmoradixExtraSectionParagraph {
        font-size: 1em;
    }
    .qelmoradixExtraSectionListItem {
        font-size: 1em;
    }
}


/* Form Section */
.qelmoradixFormSectionWrapper {
    padding: 80px 0;
}

.qelmoradixFormContainerContent {
    max-width: 700px;
    margin: 0 auto;
    padding: clamp(30px, 6vw, 60px);
}

.qelmoradixFormMainTitle {
    text-align: center;
    margin-bottom: 20px;
}

.qelmoradixFormSubtitleText {
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 40px;
    color: #CCF8FF;
}

.qelmoradixContactFormLayout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qelmoradixFormFieldGroup {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qelmoradixFormLabelElement {
    font-size: 1.1em;
    font-weight: 700;
    color: #D9FAFF;
}

.qelmoradixFormInputField,
.qelmoradixFormTextareaField {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid rgba(217, 250, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(0, 15, 43, 0.7);
    color: #D9FAFF;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.qelmoradixFormInputField::placeholder,
.qelmoradixFormTextareaField::placeholder {
    color: rgba(217, 250, 255, 0.5);
}

.qelmoradixFormInputField:focus,
.qelmoradixFormTextareaField:focus {
    border-color: #00bcd4;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

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

.qelmoradixFormCheckboxGroup {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.qelmoradixFormCheckboxInput {
    width: 20px;
    height: 20px;
    background-color: rgba(0, 15, 43, 0.8);
    border: 1px solid rgba(217, 250, 255, 0.4);
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    outline: none;
}

.qelmoradixFormCheckboxInput:checked {
    background-color: #00bcd4;
    border-color: #00bcd4;
}

.qelmoradixFormCheckboxInput:checked::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000F2B;
    font-size: 1.2em;
    font-weight: 700;
}

.qelmoradixFormCheckboxLabel {
    font-size: 0.95em;
    color: #CCF8FF;
}

.qelmoradixFormPrivacyLink {
    color: #00bcd4;
    text-decoration: underline;
}

.qelmoradixFormPrivacyLink:hover {
    color: #88eeff;
    text-shadow: 0 0 5px rgba(136, 238, 255, 0.7);
}

.qelmoradixFormSubmitButton {
    width: 100%;
    padding: 16px;
    font-size: 1.2em;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .qelmoradixFormSectionWrapper {
        padding: 40px 0;
    }
    .qelmoradixFormMainTitle {
        margin-bottom: 15px;
    }
    .qelmoradixFormSubtitleText {
        margin-bottom: 30px;
    }
    .qelmoradixFormSubmitButton {
        font-size: 1.1em;
        padding: 14px;
    }
}


/* Footer */
.qelmoradixFooterMainBlock {
    background-color: rgba(0, 15, 43, 0.9);
    backdrop-filter: blur(8px);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(217, 250, 255, 0.2);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

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

.qelmoradixFooterCopyrightText {
    font-size: 0.95em;
    color: #CCF8FF;
    margin: 0;
}

.qelmoradixFooterContactEmail {
    font-size: 0.95em;
    color: #CCF8FF;
    margin: 0;
}

.qelmoradixFooterEmailLink {
    color: #D9FAFF;
    font-weight: 700;
}

.qelmoradixFooterEmailLink:hover {
    color: #00bcd4;
    text-shadow: none;
}

.qelmoradixFooterNavLinks {
    margin-top: 10px;
}

.qelmoradixFooterLinkList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.qelmoradixFooterListItem {
    margin: 0;
}

.qelmoradixFooterNavAnchor {
    color: #D9FAFF;
    font-size: 0.9em;
}

.qelmoradixFooterNavAnchor:hover {
    color: #00bcd4;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

@media (max-width: 600px) {
    .qelmoradixFooterMainBlock {
        padding: 30px 0;
    }
    .qelmoradixFooterLinkList {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .qelmoradixFooterCopyrightText,
    .qelmoradixFooterContactEmail,
    .qelmoradixFooterNavAnchor {
        font-size: 0.85em;
    }
}