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

html {
    scroll-behavior: smooth;
}

body.qandurapixBodyStyle {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #050A18;
    color: #E0E6F0;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img.qandurapixImageResponsive {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* Header & Nav */
.qandurapixHeaderMain {
    background-color: rgba(5, 10, 24, 0.95);
    border-bottom: 2px solid #6AA9FF33;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(106, 169, 255, 0.1);
}

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

.qandurapixLogoText {
    font-size: 1.8rem;
    font-weight: 800;
    color: #6AA9FF;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(106, 169, 255, 0.5);
}

.qandurapixNavList {
    display: flex;
    gap: 1.5rem;
}

.qandurapixNavLink {
    color: #E0E6F0;
    font-weight: 500;
    font-size: 0.95rem;
}

.qandurapixNavLink:hover {
    color: #6AA9FF;
}

/* Burger Menu (No JS) */
.qandurapixNavCheckbox {
    display: none;
}

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

.qandurapixBurgerButton span {
    width: 25px;
    height: 3px;
    background-color: #6AA9FF;
    border-radius: 2px;
}

/* Hero Section */
.qandurapixHeroSection {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.qandurapixQuickLinks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 3rem;
    justify-content: center;
}

.qandurapixQuickBtn {
    background: transparent;
    border: 1px solid #6AA9FF;
    color: #6AA9FF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.qandurapixQuickBtn:hover {
    background: #6AA9FF;
    color: #050A18;
    box-shadow: 0 0 15px rgba(106, 169, 255, 0.4);
}

.qandurapixHeroWrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.qandurapixHeroImageCol, .qandurapixHeroTextCol {
    flex: 1;
}

.qandurapixMainHeading {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.qandurapixHeroSub {
    font-size: 1.25rem;
    color: #6AA9FF;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.qandurapixDescription {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #B0BCCF;
}

.qandurapixCtaButton {
    display: inline-block;
    background-color: #6AA9FF;
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 1.5rem;
    border: 2px solid #6AA9FF;
}

.qandurapixCtaButton:hover {
    background-color: transparent;
    color: #6AA9FF;
    box-shadow: 0 0 20px #6AA9FF;
}

/* Generic Section Styles */
.qandurapixSectionTitle {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #FFFFFF;
    position: relative;
}

.qandurapixSectionTitle::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #6AA9FF;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Pricing */
.qandurapixPricingSection {
    padding: 5rem 2rem;
    background-color: #080F25;
}

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

.qandurapixPriceCard {
    background: #0D1631;
    border: 1px solid #1A2850;
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1 1 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.qandurapixPriceCard:hover {
    transform: translateY(-10px);
    border-color: #6AA9FF;
}

.qandurapixFeaturedCard {
    border: 2px solid #6AA9FF;
    box-shadow: 0 10px 30px rgba(106, 169, 255, 0.15);
    position: relative;
}

.qandurapixPriceTitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #6AA9FF;
}

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

.qandurapixPriceList {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.qandurapixPriceList li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.qandurapixPriceList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

.qandurapixPriceBtn {
    text-align: center;
    padding: 0.8rem;
    border: 1px solid #6AA9FF;
    color: #6AA9FF;
    border-radius: 4px;
    font-weight: 600;
}

/* Expert Section */
.qandurapixExpertSection {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.qandurapixQuoteBlock {
    background: #0D1631;
    padding: 3rem;
    border-radius: 20px;
    border-left: 5px solid #6AA9FF;
    margin-bottom: 3rem;
}

.qandurapixQuoteBlock p {
    font-size: 1.25rem;
    font-style: italic;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.qandurapixExpertName {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #6AA9FF;
}

.qandurapixExpertDesc {
    font-size: 0.9rem;
    color: #B0BCCF;
}

.qandurapixDetailBox {
    background: #080F25;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.qandurapixDetailSummary {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #6AA9FF;
    outline: none;
    list-style: none;
}

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

.qandurapixDetailContent {
    padding: 0 1.5rem 1.5rem;
    color: #B0BCCF;
}

/* Benefits */
.qandurapixBenefitsSection {
    padding: 5rem 2rem;
    background-color: #050A18;
}

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

.qandurapixBenefitsText, .qandurapixBenefitsImage {
    flex: 1;
}

.qandurapixBenefitsList li {
    margin-bottom: 1.5rem;
}

.qandurapixBenefitsList strong {
    color: #6AA9FF;
    display: block;
    font-size: 1.1rem;
}

/* Audience */
.qandurapixAudienceSection {
    padding: 5rem 2rem;
    background-color: #080F25;
}

.qandurapixAudienceIntro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.qandurapixAudienceGrid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.qandurapixAudienceItem {
    flex: 1 1 250px;
    background: #0D1631;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.qandurapixItemImg {
    width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.qandurapixAudienceItem h4 {
    margin-bottom: 0.5rem;
    color: #6AA9FF;
}

.qandurapixItemPrice {
    display: block;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: #FFFFFF;
}

.qandurapixAudienceExtended {
    max-width: 900px;
    margin: 4rem auto 0;
}

.qandurapixCheckList li {
    padding: 1rem 0;
    border-bottom: 1px solid #1A2850;
    position: relative;
    padding-left: 30px;
}

.qandurapixCheckList li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #6AA9FF;
}

/* FAQ */
.qandurapixFaqSection {
    padding: 5rem 2rem;
}

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

.qandurapixFaqItem {
    margin-bottom: 1rem;
    border: 1px solid #1A2850;
    border-radius: 4px;
}

.qandurapixFaqSummary {
    padding: 1.2rem;
    cursor: pointer;
    font-weight: 600;
    outline: none;
    position: relative;
    list-style: none;
}

.qandurapixFaqSummary::after {
    content: '+';
    position: absolute;
    right: 20px;
    color: #6AA9FF;
}

.qandurapixFaqAnswer {
    padding: 0 1.2rem 1.2rem;
    color: #B0BCCF;
}

/* Text Sections */
.qandurapixTextSection {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.qandurapixTextContent p {
    margin-bottom: 1.5rem;
}

.qandurapixDotList {
    margin: 2rem 0;
    padding-left: 20px;
}

.qandurapixDotList li {
    margin-bottom: 0.8rem;
    list-style-type: square;
    color: #6AA9FF;
}

.qandurapixInfoBox {
    background: #1A2850;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.qandurapixInfoBox h4 {
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

/* Form */
.qandurapixFormSection {
    padding: 6rem 2rem;
    background: #080F25;
}

.qandurapixFormContainer {
    max-width: 600px;
    margin: 0 auto;
    background: #0D1631;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.qandurapixFormSub {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #B0BCCF;
}

.qandurapixFormGroup {
    margin-bottom: 1.5rem;
}

.qandurapixFormGroup label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #6AA9FF;
}

.qandurapixFormGroup input, .qandurapixFormGroup textarea {
    width: 100%;
    padding: 0.8rem;
    background: #050A18;
    border: 1px solid #1A2850;
    color: #FFFFFF;
    border-radius: 4px;
    outline: none;
}

.qandurapixFormGroup input:focus, .qandurapixFormGroup textarea:focus {
    border-color: #6AA9FF;
}

.qandurapixCheckboxGroup {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
}

.qandurapixCheckboxGroup a {
    color: #6AA9FF;
}

.qandurapixSubmitBtn {
    width: 100%;
    background: #6AA9FF;
    color: #FFFFFF;
    border: none;
    padding: 1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
}

.qandurapixSubmitBtn:hover {
    box-shadow: 0 0 15px #6AA9FF;
}

/* Footer */
.qandurapixFooterMain {
    background-color: #050A18;
    border-top: 1px solid #1A2850;
    padding: 4rem 2rem 2rem;
}

.qandurapixFooterTop {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.qandurapixFooterLogo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #6AA9FF;
}

.qandurapixContactInfo a {
    color: #E0E6F0;
}

.qandurapixFooterBottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid #1A2850;
    padding-top: 2rem;
}

.qandurapixLegalLinks {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.qandurapixLegalLinks a {
    font-size: 0.8rem;
    color: #B0BCCF;
}

.qandurapixLegalLinks a:hover {
    color: #6AA9FF;
}

/* Responsive */
@media (max-width: 992px) {
    .qandurapixHeroWrapper, .qandurapixBenefitsWrapper {
        flex-direction: column;
    }
    .qandurapixMainHeading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .qandurapixBurgerButton {
        display: flex;
    }
    .qandurapixNavigation {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #0D1631;
        transition: 0.4s;
    }
    .qandurapixNavList {
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
    }
    .qandurapixNavCheckbox:checked ~ .qandurapixNavigation {
        left: 0;
    }
    .qandurapixFooterTop {
        flex-direction: column;
        text-align: center;
    }
    .qandurapixPriceGrid {
        flex-direction: column;
        align-items: center;
    }
    .qandurapixPriceCard {
        max-width: 100%;
    }
}