
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Urbanist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
   
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Color Variables */
:root {
    --primary-purple: #7c3aed;
    --secondary-purple: #a855f7;
    --dark-blue: #1e293b;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --error-red: #ef4444;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.primaryButton {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: var(--shadow-light);
}

.primaryButton:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, var(--secondary-purple) 0%, var(--primary-purple) 100%);
}

.secondaryButton {
    background: rgba(255, 255, 255, 0.1);
    color: var(--dark-blue);
    border: 2px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondaryButton:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Header Styles */
.neuralNavigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.aiNavigationContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brandIdentity {
    display: flex;
    align-items: center;
}

.neuralLogo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.logoImage {
    width: autopx;
    height: 65px;
    border-radius: 8px;
}

.navigationMenu {
    display: flex;
}

.menuList {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navLink {
    color: var(--medium-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navLink:hover,
.activeLink {
    color: var(--primary-purple);
    background: rgba(124, 58, 237, 0.1);
}

.navigationActions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trustIndicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warning-orange);
    font-size: 0.875rem;
    font-weight: 600;
}

.trustIcon {
    color: var(--warning-orange);
}


/* Mobile Menu Styles */
.mobileMenuToggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburgerLine {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-purple);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobileNavigationOverlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 999;
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobileNavigationOverlay.active {
    transform: translateX(0);
}

.mobileMenuContent {
    display: flex;
    background-color: #ffffff;
    padding: 20px;
    flex-direction: column;
    gap: 20px;
}

.mobileNavLink {
    font-size: 1.2rem;
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.activeMobileLink {
    color: var(--primary-purple);
    font-weight: 600;
}

.mobileActionButtons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobileTrustIndicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
}

/* Hamburger Animation Classes */
.mobileMenuToggle.active .hamburgerLine:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobileMenuToggle.active .hamburgerLine:nth-child(2) {
    opacity: 0;
}

.mobileMenuToggle.active .hamburgerLine:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Media Queries */
@media (max-width: 768px) {
    .navigationMenu,
    .navigationActions {
        display: none;
    }

    .mobileMenuToggle {
        display: block;
    }

    .mobileNavigationOverlay {
        display: block;
    }

    .aiNavigationContainer {
        padding: 0 20px;
    }
}




/* Main Content */
.mainContentWrapper,
.servicesMainContent,
.aboutMainContent,
.faqMainContent,
.contactMainContent,
.legalMainContent,
.errorMainContent {
    padding-top: 80px;
    background: var(--light-gray);
}

/* Hero Section */
.brainLandingSection {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%),
        url(../images/8.jpg) center/cover no-repeat;
    color: white;
    position: relative;
    overflow: hidden;
}

.brainLandingSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.aiLandingContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.landingContentGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.primaryHeading {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlightedText {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.introductionText {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.actionButtonGroup {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.enrollButton {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
}

.exploreButton {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.visualContentBlock {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.animatedImageContainer {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.floatingImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.imageOverlayEffects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.neuralNode {
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
    animation: pulseNode 2s ease-in-out infinite;
}

.nodeOne { top: 20%; left: 15%; animation-delay: 0s; }
.nodeTwo { top: 40%; right: 20%; animation-delay: 0.5s; }
.nodeThree { bottom: 30%; left: 25%; animation-delay: 1s; }

@keyframes pulseNode {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.curriculumPreview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.previewTitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.topicsList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
}

.topicItem {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.topicItem:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.topicIcon {
    color: #fbbf24;
    font-size: 1.25rem;
}

.topicText {
    color: white;
    font-weight: 500;
}

/* Achievement Metrics */
.achievementMetrics {
    padding: 4rem 0;
    background: white;
}

.metricsContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.statisticsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metricCard {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metricCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
}

.metricCard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.metricIcon {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1rem;
}

.metricNumber {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.metricLabel {
    color: var(--medium-gray);
    font-weight: 500;
}

/* Learning Pathways */
.learningPathways {
    padding: 4rem 0;
    background: var(--light-gray);
}

.pathwaysContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sectionHeader {
    text-align: center;
    margin-bottom: 4rem;
}

.sectionTitle {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.sectionSubtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.pathwayCards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.pathwayCard {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pathwayCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.beginnerTrack::before { background: linear-gradient(135deg, #10b981 0%, #059669 100%); }
.intermediateTrack::before { background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%); }
.expertTrack::before { background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%); }

.pathwayCard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.cardHeader {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.pathwayIcon {
    font-size: 2rem;
}

.beginnerTrack .pathwayIcon { color: #10b981; }
.intermediateTrack .pathwayIcon { color: var(--primary-purple); }
.expertTrack .pathwayIcon { color: #f59e0b; }

.pathwayTitle {
    font-size: 1.5rem;
    color: var(--dark-blue);
}

.pathwayLevel {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: auto;
}

.pathwayDescription {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.pathwayFeatures {
    list-style: none;
    margin-bottom: 2rem;
}

.featureItem {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.featureItem::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.pathwayButton {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pathwayButton:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Unique Advantages */
.uniqueAdvantages {
    padding: 4rem 0;
    background: white;
}

.advantagesContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.advantagesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantageCard {
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.advantageCard:hover {
    background: rgba(124, 58, 237, 0.05);
    transform: translateY(-5px);
}

.advantageIcon {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.advantageTitle {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.advantageDescription {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Student Success Stories */
.studentSuccessStories {
    padding: 4rem 0;
    background: var(--light-gray);
}

.storiesContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonialCards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonialCard {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.testimonialCard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonialContent {
    margin-bottom: 1.5rem;
}

.quoteIcon {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonialText {
    font-style: italic;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.testimonialAuthor {
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    padding-top: 1rem;
}

.authorName {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
}

.authorRole {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.careerChange {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Curriculum Breakdown */
.curriculumBreakdown {
    padding: 4rem 0;
    background: white;
}

.curriculumContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.weeklyPlan {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.weekCard {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.weekCard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.weekHeader {
    margin-bottom: 1rem;
}

.weekNumber {
    background: var(--primary-purple);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.weekTitle {
    color: var(--dark-blue);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.weekDescription {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Final CTA */
.finalCallToAction {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.ctaContainer_grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ctaTitle {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ctaSubtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.ctaFeatures {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.ctaFeature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.featureCheckIcon {
    color: #10b981;
    font-size: 1.25rem;
}

.featureText {
    opacity: 0.9;
}

.ctaActions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.majorCtaButton {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.ctaDisclaimer {
    font-size: 0.875rem;
    opacity: 0.7;
    margin: 0;
}

.ctaImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

/* Services Page Styles */
.servicesIntroduction {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.servicesIntroduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.introContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.servicesMainTitle {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.servicesSubtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.introHighlights {
    display: flex;
    gap: 1.5rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.highlight:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.highlightIcon {
    color: #fbbf24;
    font-size: 1.2rem;
}

.highlightText {
    font-weight: 500;
}

.introVisual {
    position: relative;
}

.introImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.introImage:hover {
    transform: scale(1.02);
}

.primaryServiceOfferings {
    padding: 4rem 0;
    background: var(--light-gray);
}

.servicesContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.servicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.serviceCard {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.serviceCard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.serviceCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.serviceCard:hover::before {
    transform: scaleX(1);
}

.serviceImageWrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.serviceImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.serviceCard:hover .serviceImage {
    transform: scale(1.05);
}

.serviceOverlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.serviceContent {
    padding: 2rem;
}

.serviceHeader {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.serviceMainIcon {
    font-size: 2rem;
    color: var(--primary-purple);
    transition: all 0.3s ease;
}

.serviceCard:hover .serviceMainIcon {
    transform: scale(1.1);
    color: var(--secondary-purple);
}

.serviceTitle {
    color: var(--dark-blue);
    margin: 0;
    font-size: 1.5rem;
}

.serviceDescription {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.serviceBenefits {
    margin-bottom: 1.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.benefit:hover {
    transform: translateX(5px);
    background: rgba(124, 58, 237, 0.05);
    border-radius: 8px;
    padding-left: 0.5rem;
}

.benefitIcon {
    color: #10b981;
    font-size: 1rem;
    min-width: 16px;
}

.benefitText {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.serviceDetails {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.duration,
.pricing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--dark-blue);
}

.duration i,
.pricing i {
    color: var(--primary-purple);
}

.serviceButton {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.serviceButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.serviceButton:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.serviceButton:hover::before {
    left: 100%;
}

/* Service Comparison */
.serviceComparison {
    padding: 4rem 0;
    background: white;
}

.comparisonContainer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.comparisonTable {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin-top: 2rem;
}

.comparisonHeader,
.comparisonRow {
    display: grid;
    grid-template-columns: 1fr repeat(3, 150px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.comparisonHeader {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    font-weight: 600;
}

.comparisonRow:hover {
    background: rgba(124, 58, 237, 0.02);
}

.featureColumn,
.programColumn {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.featureColumn {
    justify-content: flex-start;
    font-weight: 600;
    color: var(--dark-blue);
}

.comparisonHeader .featureColumn {
    color: white;
}

.enrollmentIncentive {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.enrollmentIncentive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.incentiveContainer {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.incentiveTitle {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.incentiveSubtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.incentiveFeatures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.incentiveFeature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.incentiveFeature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.incentiveIcon {
    color: #10b981;
    font-size: 1.25rem;
}

.incentiveText {
    opacity: 0.9;
    font-weight: 500;
}

.incentiveActions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.majorIncentiveButton {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.majorIncentiveButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.majorIncentiveButton:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.majorIncentiveButton:hover::before {
    left: 100%;
}

.incentiveGuarantee {
    font-size: 0.875rem;
    opacity: 0.7;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.incentiveGuarantee i {
    color: #10b981;
}

/* Pedagogy Approach */
.pedagogyApproach {
    padding: 4rem 0;
    background: white;
}

.pedagogyContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.approachContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.approachText {
    
}

.approachTitle {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.approachDescription {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.approachPrinciples {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.principle {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.principle:hover {
    background: rgba(124, 58, 237, 0.1);
    transform: translateX(10px);
}

.principleIcon {
    color: var(--primary-purple);
    font-size: 1.5rem;
    min-width: 24px;
    margin-top: 0.25rem;
}

.principleContent {
    flex: 1;
}

.principleTitle {
    color: var(--dark-blue);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.principleText {
    color: var(--medium-gray);
    line-height: 1.6;
}

.approachImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.approachImage:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

/* About Page Styles */
.missionStatement {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.missionStatement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.missionContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.aboutMainTitle {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.missionDescription {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.missionValues {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.valueItem {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.valueItem:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.valueIcon {
    color: #fbbf24;
    font-size: 1.25rem;
}

.valueText {
    font-weight: 500;
}

.missionImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.missionImage:hover {
    transform: scale(1.02);
}

.partnershipsContainer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.partnershipContent {
    text-align: center;
}

.partnershipText {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.recognitionAwards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.award:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.awardIcon {
    font-size: 2.5rem;
    color: #f59e0b;
    min-width: 40px;
}

.awardInfo {
    flex: 1;
    text-align: left;
}

.awardTitle {
    color: var(--dark-blue);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.studentTestimonials {
    padding: 4rem 0;
    background: white;
}

.testimonialsContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonialsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonialCard {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonialCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.testimonialCard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonialCard:hover::before {
    transform: scaleY(1);
}

.testimonialContent {
    margin-bottom: 1.5rem;
}

.quoteIcon {
    color: var(--primary-purple);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.testimonialText {
    font-style: italic;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 1rem;
    position: relative;
}

.testimonialRating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonialRating i {
    color: #f59e0b;
    font-size: 1rem;
}

.testimonialAuthor {
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    padding-top: 1rem;
}

.authorName {
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.authorRole {
    
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.careerTransition {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

/* Industry Partnerships */
.industryPartnerships {
    padding: 4rem 0;
    background: var(--light-gray);
}

.partnershipsContainer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.partnershipContent {
    text-align: center;
}

.partnershipText {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.recognitionAwards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.award {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.award:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.awardIcon {
    font-size: 2.5rem;
    color: #f59e0b;
    min-width: 40px;
}

.awardInfo {
    flex: 1;
    text-align: left;
}

.awardTitle {
    color: var(--dark-blue);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.awardOrg {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.companyOrigin {
    padding: 4rem 0;
    background: white;
}

.originContainer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.storyText {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.originStats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(124, 58, 237, 0.05);
    border-radius: 20px;
}

.statItem {
    text-align: center;
}

.statNumber {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    display: block;
}

.statLabel { 
    font-weight: 500;
}

/* Expertise Areas */
.expertiseAreas {
    padding: 4rem 0;
    background: var(--light-gray);
}

.expertiseContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.expertiseGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expertiseCard {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.expertiseCard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.expertiseIcon {
    font-size: 3rem;
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.expertiseTitle {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.expertiseDescription {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* Instructor Team */
.instructorTeam {
    padding: 4rem 0;
    background: white;
}

.teamContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.instructorGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.instructorCard {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.instructorCard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.instructorName {
    color: var(--dark-blue);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.instructorRole {
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 1rem;
}

.instructorBackground {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.instructorSpecialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.specialty {
    background: var(--primary-purple);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* FAQ Page Enhanced Styles */
.faqIntroduction {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.faqIntroduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.faqIntroContainer {
    max-width: 1200px;
    margin: 25px auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.faqMainTitle {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.faqIntroText {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.quickContactInfo {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contactPrompt {
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.contactButton {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contactButton:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}


.stillHaveQuestions {
    padding: 4rem 0;
    background: white;
}

.questionsContainer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.questionsTitle {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.questionsSubtitle {
    color: var(--medium-gray);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.contactOptions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contactOption {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contactOption:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.optionIcon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.optionTitle {
    color: var(--dark-blue);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.optionDescription {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.optionButton {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

/* Contact Page Enhanced Styles */
.contactIntroduction {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contactIntroduction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contactIntroContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.contactMainTitle {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.contactSubtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.urgencyIndicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.indicatorIcon {
    color: #fbbf24;
    font-size: 1.25rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.indicatorText {
    font-weight: 500;
}

.primaryContactSection {
    padding: 4rem 0;
    background: var(--light-gray);
}

.contactFormContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contactFormWrapper {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    position: relative;
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.contactFormWrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 20px 20px 0 0;
}

.formHeader {
    margin-bottom: 2rem;
    text-align: center;
}

.formTitle {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.formDescription {
    color: var(--medium-gray);
    line-height: 1.7;
}

.contactForm {
    margin-bottom: 2rem;
}

.formGrid {
    display: grid;
    gap: 1.5rem;
}

.inputGroup {
    display: flex;
    flex-direction: column;
}

.fullWidth {
    grid-column: 1 / -1;
}

.halfWidth {
    grid-column: span 1;
}

.inputLabel {
    color: var(--dark-blue);
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.inputLabel::after {
    content: '*';
    color: var(--error-red);
}

.inputGroup:not(:has(input[required], select[required], textarea[required])) .inputLabel::after {
    display: none;
}

.formInput,
.formSelect,
.formTextarea {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
}

.formInput:focus,
.formSelect:focus,
.formTextarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    background: rgba(124, 58, 237, 0.02);
}

.formInput:hover,
.formSelect:hover,
.formTextarea:hover {
    border-color: rgba(124, 58, 237, 0.2);
}

.inputError {
    border-color: var(--error-red) !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.fieldError {
    color: var(--error-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.fieldError::before {
    content: '⚠';
}

.checkboxGroup {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.formCheckbox {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-purple);
}

.checkboxLabel {
    color: var(--medium-gray);
    line-height: 1.5;
    cursor: pointer;
    font-size: 0.875rem;
}

.submitButton {
    width: 100%;
    margin: 20px 0;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
}

.submitButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.submitButton:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.submitButton:hover::before {
    left: 100%;
}

.submitButton:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.buttonLoader {
    display: none;
}

.submitButton.loading .buttonText {
    opacity: 0;
}

.submitButton.loading .buttonLoader {
    display: block;
    animation: spin 1s linear infinite;
}

.formDisclaimer {
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.formDisclaimer i {
    color: #10b981;
}

.formErrors {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error-red);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
    animation: shakeError 0.5s ease-in-out;
}

@keyframes shakeError {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.errorHeader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.errorIcon {
    color: var(--error-red);
    font-size: 1.25rem;
}

.errorTitle {
    color: var(--error-red);
    font-weight: 600;
}

.errorList {
    list-style: none;
    margin: 0;
}

.errorItem {
    color: var(--error-red);
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.errorItem::before {
    content: '•';
    color: var(--error-red);
}

.alternativeContactMethods {
    padding: 4rem 0;
    background: white;
}

.alternativeContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.methodsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.methodCard {
    background: white;
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.methodCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.methodCard:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(124, 58, 237, 0.2);
}

.methodCard:hover::before {
    transform: scaleX(1);
}

.cardIcon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    color: var(--primary-purple);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.methodCard:hover .cardIcon {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
    transform: scale(1.1);
}

.cardTitle {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cardDescription {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cardDetails {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.detail i {
    color: var(--primary-purple);
}

.cardButton {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cardButton:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.finalCTA {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.finalCTA::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.finalCTAContainer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.ctaTitle {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ctaSubtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.ctaStats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ctaStat {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.ctaStat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.statNumber {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    display: block;
    margin-bottom: 0.5rem;
}

.statLabel {
    font-size: 0.875rem;
    opacity: 0.8;
}

.ctaButton {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.ctaButton:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
}

.legalList {
    list-style: none;
    margin: 1rem 0;
}

.listItem {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.listItem::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-purple);
    font-weight: bold;
}

/* Contact Page Styles */
.contactIntroduction {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contactIntroContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contactMainTitle {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contactSubtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.urgencyIndicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.indicatorIcon {
    color: #fbbf24;
}

.indicatorText {
    font-weight: 500;
}

.primaryContactSection {
    padding: 4rem 0;
    background: var(--light-gray);
}


.formHeader {
    margin-bottom: 2rem;
}

.formTitle {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.formDescription {
    color: var(--medium-gray);
    line-height: 1.7;
}

.contactForm {
    margin-bottom: 2rem;
}

.formGrid {
    display: grid;
    gap: 1.5rem;
}

.inputGroup {
    display: flex;
    flex-direction: column;
}

.fullWidth {
    grid-column: 1 / -1;
}

.halfWidth {
    grid-column: span 1;
}

.inputLabel {
    color: var(--dark-blue);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.formInput,
.formSelect,
.formTextarea {
    padding: 0.75rem 1rem;
    border: 2px solid rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.formInput:focus,
.formSelect:focus,
.formTextarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.inputError {
    border-color: var(--error-red);
}

.fieldError {
    color: var(--error-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.formDisclaimer {
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.formErrors {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error-red);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.errorHeader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.errorIcon {
    color: var(--error-red);
}

.errorTitle {
    color: var(--error-red);
    font-weight: 600;
}

.errorList {
    list-style: none;
    margin: 0;
}

.errorItem {
    color: var(--error-red);
    padding: 0.25rem 0;
}

/* Contact Sidebar */
.contactInfoSidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebarContent {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.sidebarTitle {
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.contactMethod {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.methodIcon {
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-purple);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.methodTitle {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.methodDetail {
    color: var(--medium-gray);
    margin-bottom: 0.25rem;
}

.methodNote {
    color: var(--medium-gray);
    font-size: 0.875rem;
    font-style: italic;
}

.urgentContact {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.urgentHeader {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.urgentIcon {
    color: var(--error-red);
    font-size: 1.25rem;
}

.urgentTitle {
    color: var(--error-red);
    margin: 0;
}

.urgentText {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.urgentActions {
    display: flex;
    gap: 0.5rem;
}

.urgentButton {
    flex: 1;
    background: var(--error-red);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.urgentButton:hover {
    background: #dc2626;
    transform: translateY(-1px);
}

.socialProof {
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.proofTitle {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.proofStats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.proofStat {
    text-align: center;
    background: rgba(124, 58, 237, 0.05);
    padding: 1rem;
    border-radius: 12px;
}

.proofNumber {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    display: block;
}

.proofLabel {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.socialLinks {
    display: flex;
    gap: 0.5rem;
}

.socialButton {
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.socialButton:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
}

/* Thank You Page */
.thankYouMainContent {
    padding-top: 80px;
    background: var(--light-gray);
    min-height: 100vh;
}

.gratitudeSection {
    padding: 4rem 0;
}

.gratitudeContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.thankYouContent {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.successAnimation {
    position: relative;
    margin-bottom: 2rem;
}

.checkmarkWrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    margin-bottom: 2rem;
    position: relative;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.checkmarkIcon {
    color: white;
    font-size: 3rem;
}

.animatedElements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-purple);
    border-radius: 50%;
    animation: floatParticle 3s ease-in-out infinite;
}

.particle1 { top: 20%; left: 20%; animation-delay: 0s; }
.particle2 { top: 20%; right: 20%; animation-delay: 0.5s; }
.particle3 { bottom: 20%; left: 20%; animation-delay: 1s; }
.particle4 { bottom: 20%; right: 20%; animation-delay: 1.5s; }

@keyframes floatParticle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50% { transform: translate(0, -10px) scale(1.2); opacity: 1; }
}

.thankYouTitle {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thankYouMessage {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.nextStepsInfo {
    text-align: left;
    margin-bottom: 3rem;
}

.stepsTitle {
    color: var(--dark-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.stepsTimeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timelineStep {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.stepNumber {
    background: var(--primary-purple);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.stepTitle {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.stepDescription {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Footer Styles */
.neuralFooterSection {
    background: var(--dark-blue);
    color: white;
    padding: 4rem 0 2rem;
}

.aiFooterContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footerContentGrid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footerBrandIdentity {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footerLogo {
    width: auto
    height: 70px;
    border-radius: 8px;
}

.footerBrandName {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.companyMission {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contactDetails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contactItem {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contactIcon {
    color: var(--secondary-purple);
    width: 20px;
}

.contactText {
    color: rgba(255, 255, 255, 0.8);
}

.footerSectionTitle {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footerNavList {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footerLink {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footerLink:hover {
    color: var(--secondary-purple);
    transform: translateX(3px);
}

.socialMediaLinks {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.socialLink {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.socialLink:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
}

.socialIcon {
    font-size: 1.25rem;
}

.newsletterSubscription {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletterTitle {
    margin-bottom: 1rem;
    color: white;
}

.newsletterForm {
    display: flex;
    gap: 0.5rem;
}

.newsletterInput {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
}

.newsletterInput::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletterButton {
    background: var(--secondary-purple);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletterButton:hover {
    background: var(--primary-purple);
}

.footerBottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyrightText {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footerBadges {
    display: flex;
    gap: 2rem;
}

.trustBadge,
.certificationBadge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.badgeIcon {
    color: var(--secondary-purple);
}


/* Legal Pages Styles */
.legalDocumentSection {
    padding: 4rem 0;
}

.legalContainer {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.documentHeader {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(124, 58, 237, 0.1);
}

.legalTitle {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lastUpdated {
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.legalIntro {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1.125rem;
}

.legalContent {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

.legalSection {
    margin-bottom: 3rem;
}

.legalSection:last-child {
    margin-bottom: 0;
}

.sectionTitle {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.sectionText {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.subsectionContent {
    margin-left: 1rem;
}

.subsectionTitle {
    color: var(--dark-blue);
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem;
}

.contactInfo {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.contactDetail {
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 0;
}

.legalFooter {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.footerNote {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.documentActions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.printButton,
.downloadButton {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.printButton:hover,
.downloadButton:hover {
    background: var(--secondary-purple);
    transform: translateY(-1px);
}

/* Cookie Policy Specific Styles */
.cookieTable {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin: 2rem 0;
}

.tableHeader,
.tableRow {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.tableHeader {
    background: var(--primary-purple);
    color: white;
    font-weight: 600;
}

.columnName,
.columnPurpose,
.columnDuration,
.columnType {
    padding: 1rem;
    display: flex;
    align-items: center;
}

.tableRow:hover {
    background: rgba(124, 58, 237, 0.02);
}

.cookieControls {
    text-align: center;
    margin: 2rem 0;
}

.cookieControlButton {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cookieControlButton:hover {
    background: var(--secondary-purple);
    transform: translateY(-1px);
}

/* Error Page Styles */
.errorPageSection {
    padding: 4rem 0;
    background: var(--light-gray);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.errorContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.errorVisual {
    margin-bottom: 3rem;
}

.errorIllustration {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 0 auto 2rem;
}

.neuralNetworkError {
    width: 100%;
    height: 100%;
    position: relative;
}

.errorNode {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-purple);
    border-radius: 50%;
    opacity: 0.7;
}

.node1 { top: 20%; left: 20%; }
.node2 { top: 60%; left: 20%; }
.node3 { top: 20%; right: 20%; }
.node4 { top: 60%; right: 20%; }
.node5 { top: 40%; left: 50%; transform: translateX(-50%); }

.connectionLine {
    position: absolute;
    height: 2px;
    background: var(--medium-gray);
    opacity: 0.3;
}

.line1 {
    top: 30%;
    left: 25%;
    width: 25%;
    transform: rotate(20deg);
}

.line2 {
    top: 50%;
    left: 25%;
    width: 25%;
    transform: rotate(-20deg);
}

.line3 {
    top: 30%;
    right: 25%;
    width: 25%;
    transform: rotate(-20deg);
}

.line4 {
    top: 50%;
    right: 25%;
    width: 25%;
    transform: rotate(20deg);
}

.brokenConnection {
    position: absolute;
    top: 40%;
    left: 45%;
    width: 10%;
    height: 2px;
    background: var(--error-red);
    animation: brokenPulse 2s ease-in-out infinite;
}

@keyframes brokenPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.errorCode {
    font-size: 8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.errorTitle {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.errorDescription {
    font-size: 1.25rem;
    color: var(--medium-gray);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.errorActions {
    margin: 3rem 0;
}

.primaryActions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.homeButton {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: white;
}


.searchSection {
    max-width: 500px;
    margin: 0 auto;
}

.searchTitle {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.errorSearchForm {
    margin: 0;
}

.searchInputGroup {
    display: flex;
    gap: 0.5rem;
    background: white;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: var(--shadow-light);
}

.searchInput {
    flex: 1;
    border: none;
    padding: 0.75rem;
    font-family: inherit;
    background: transparent;
}

.searchInput:focus {
    outline: none;
}

.searchButton {
    background: var(--primary-purple);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.searchButton:hover {
    background: var(--secondary-purple);
}

.helpfulLinks {
    margin: 4rem 0;
}

.linksTitle {
    color: var(--dark-blue);
    margin-bottom: 2rem;
}

.linksGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.linkCard {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.linkCard:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.linkIcon {
    width: 60px;
    height: 60px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary-purple);
}

.linkTitle {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.linkDescription {
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.linkButton {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.linkButton:hover {
    background: var(--secondary-purple);
    transform: translateY(-1px);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    .aiLandingContainer,
    .introContainer,
    .missionContainer,
    .contactIntroContainer,
    .faqIntroContainer,
    .ctaContainer_grid {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    /* Header */
    .navigationMenu,
    .navigationActions {
        display: none;
    }
    
    .mobileMenuToggle {
        display: flex;
        flex-direction: column;
    }
    
    .aiNavigationContainer {
        padding: 0 1rem;
        height: 70px;
    }
    
    .brandName {
        font-size: 1.25rem;
    }
    
    .logoImage {
        width: auto;
        height: 45px;
    }
    
    /* Typography */
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .primaryHeading {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .servicesMainTitle,
    .aboutMainTitle,
    .faqMainTitle,
    .contactMainTitle,
    .thankYouTitle {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .ctaTitle {
        font-size: 2rem;
    }
    
    /* Grid Layouts */
    .landingContentGrid,
    .ctaContainer_grid,
    .introContainer,
    .contactIntroContainer,
    .faqIntroContainer,
    .missionContainer,
    .approachContent {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contactFormContainer,
    .gratitudeContainer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .statisticsGrid,
    .pathwayCards,
    .advantagesGrid,
    .testimonialCards,
    .weeklyPlan,
    .servicesGrid,
    .expertiseGrid,
    .instructorGrid,
    .linksGrid,
    .methodsGrid,
    .exploringGrid,
    .resourceCards {
        grid-template-columns: 1fr;
    }
    
    .footerContentGrid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .proofStatistics,
    .ctaStats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .recognitionAwards {
        grid-template-columns: 1fr;
    }
    
    /* Contact Form */
    .formGrid .halfWidth {
        grid-column: 1;
    }
    
    .formGrid {
        gap: 1rem;
    }
    
    .contactFormWrapper,
    .thankYouContent,
    .sidebarContent {
        padding: 1.5rem;
    }
    
    /* Buttons */
    .primaryActions,
    .urgentButtons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .actionButtonGroup {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }
    
    .actionButtonGroup .primaryButton,
    .actionButtonGroup .secondaryButton {
        width: 100%;
        justify-content: center;
    }
    
    /* Cards */
    .serviceCard,
    .pathwayCard,
    .testimonialCard,
    .instructorCard,
    .methodCard {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .metricCard,
    .advantageCard,
    .expertiseCard,
    .linkCard {
        text-align: center;
    }
    
    /* Error Page */
    .errorCode {
        font-size: 5rem;
    }
    
    .errorTitle {
        font-size: 2rem;
    }
    
    .errorDescription {
        font-size: 1.125rem;
    }
    
    .errorIllustration {
        width: 250px;
        height: 150px;
    }
    
    /* Category Tabs */
    .categoryNavigation {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .categoryTab {
        justify-content: center;
        width: 100%;
    }
    
    /* Comparison Table */
    .comparisonHeader,
    .comparisonRow {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }
    
    .featureColumn {
        justify-content: center;
        font-weight: 600;
        background: rgba(124, 58, 237, 0.05);
        border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    }
    
    .programColumn {
        padding: 0.75rem;
        border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    }
    
    /* Cookie Modal */
    .cookieModalContent {
        max-height: 95vh;
        margin: 1rem;
        max-width: calc(100vw - 2rem);
    }
    
    .cookieActions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookieFloatingBanner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
    }
    
    .bannerContent {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .bannerActions {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .footerBottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footerBadges {
        justify-content: center;
        gap: 1rem;
    }
    
    .socialMediaLinks {
        justify-content: center;
    }
    
    .newsletterForm {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Timeline adjustments */
    .stepsTimeline::before {
        display: none;
    }
    
    .timelineStep {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stepNumber {
        margin: 0 auto;
    }
    
    /* Urgency indicators mobile */
    .urgencyIndicators {
        gap: 0.75rem;
    }
    
    .indicator {
        padding: 0.5rem 0.75rem;
    }
    
    /* Navigation improvements */
    .trustIndicator {
        font-size: 0.75rem;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    /* Base */
    html {
        font-size: 14px;
    }
    
.originStats { 
    grid-template-columns: repeat(2, 1fr);
}

    .container {
        padding: 0 1rem;
    }
    
    /* Typography */
    .primaryHeading {
        font-size: 2rem;
    }
    
    .servicesMainTitle,
    .aboutMainTitle,
    .faqMainTitle,
    .contactMainTitle,
    .thankYouTitle {
        font-size: 1.75rem;
    }
    
    .legalTitle {
        font-size: 1.75rem;
    }
    
    .ctaTitle {
        font-size: 1.75rem;
    }
    
    .sectionTitle {
        font-size: 1.5rem;
    }
    
    /* Spacing */
    .brainLandingSection,
    .servicesIntroduction,
    .missionStatement,
    .faqIntroduction,
    .contactIntroduction,
    .finalCTA {
        padding: 2rem 0;
    }
    
    section {
        padding: 2rem 0;
    }
    
    /* Cards */
    .metricCard,
    .pathwayCard,
    .testimonialCard,
    .serviceCard,
    .expertiseCard,
    .instructorCard,
    .linkCard,
    .methodCard,
    .exploreCard {
        padding: 1.5rem;
        max-width: 300px;
    }
    
    .contactFormWrapper,
    .thankYouContent,
    .legalContent {
        padding: 2rem 1.5rem;
    }
    
    .sidebarContent {
        padding: 1.5rem;
    }
    
    /* Buttons */
    .primaryButton,
    .secondaryButton {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .majorCtaButton,
    .majorIncentiveButton {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Error Page */
    .errorCode {
        font-size: 4rem;
    }
    
    .errorTitle {
        font-size: 1.75rem;
    }
    
    .errorContainer {
        padding: 0 1rem;
    }
    
    /* Cookie Modal */
    .cookieModalContent {
        margin: 0.5rem;
    }
    
    .cookieHeader {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .cookieBody {
        padding: 0 1.5rem;
    }
    
    .cookieActions {
        padding: 1rem 1.5rem;
    }
    
    .cookieFooterNote {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    /* Form improvements */
    .formTitle {
        font-size: 1.5rem;
    }
    
    .inputLabel {
        font-size: 0.875rem;
    }
    
    .formInput,
    .formSelect,
    .formTextarea {
        font-size: 0.875rem;
    }
    
    /* Statistics grid mobile */
    .proofStatistics {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .ctaStats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    /* Image adjustments */
    .introImage,
    .missionImage,
    .ctaImage,
    .floatingImage,
    .approachImage {
        height: 250px;
    }
    
    /* Header mobile adjustments */
    .aiNavigationContainer {
        height: 60px;
    }
    
    .mainContentWrapper,
    .servicesMainContent,
    .aboutMainContent,
    .faqMainContent,
    .contactMainContent,
    .legalMainContent,
    .errorMainContent,
    .thankYouMainContent {
        padding-top: 60px;
    }
}

/* Enhanced Animations for Mobile */
@media (max-width: 768px) {
    .floatingImage {
        animation-duration: 8s;
    }
    
    .successAnimation {
        margin-bottom: 1.5rem;
    }
    
    .checkmarkWrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .checkmarkIcon {
        font-size: 2rem;
    }
    
    .particle {
        width: 4px;
        height: 4px;
    }
    
    .animatedElements {
        width: 150px;
        height: 150px;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-purple: #5b21b6;
        --secondary-purple: #7c2d12;
        --dark-blue: #000000;
        --medium-gray: #374151;
    }
    
    .primaryButton,
    .serviceButton,
    .pathwayButton {
        border: 2px solid currentColor;
    }
    
    .secondaryButton {
        border: 2px solid var(--dark-blue);
        background: white;
        color: var(--dark-blue);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floatingImage {
        animation: none;
    }
    
    .successPulse,
    .checkmarkDraw,
    .slideInUp,
    .fadeIn,
    .floatParticle {
        animation: none;
    }
}

/* Print styles enhanced */
@media print {
    .neuralNavigation,
    .cookieConsentOverlay,
    .cookieFloatingBanner,
    .documentActions,
    .urgentContact,
    .socialProof,
    .errorActions,
    .searchSection,
    .helpfulLinks,
    .mobileMenuToggle,
    .primaryButton,
    .secondaryButton,
    .submitButton,
    .actionButtonGroup {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .mainContentWrapper,
    .servicesMainContent,
    .aboutMainContent,
    .faqMainContent,
    .contactMainContent,
    .legalMainContent,
    .errorMainContent,
    .thankYouMainContent {
        padding-top: 0;
    }
    
    h1 { font-size: 18pt; }
    h2 { font-size: 16pt; }
    h3 { font-size: 14pt; }
    
    .primaryHeading {
        font-size: 20pt;
    }
    
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    .pagebreak {
        page-break-before: always;
    }
}



/* ===========================================
   THANK YOU PAGE STYLES
   =========================================== */

/* Main Content Layout */
.thankYouMainContent {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding-top: 80px;
}

/* Gratitude Section */
.gratitudeSection {
    padding: 60px 0 80px;
}

.gratitudeContainer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.thankYouContent {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

/* Success Animation */
.successAnimation {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmarkWrapper {
    position: relative;
    z-index: 2;
}

.checkmarkIcon {
    font-size: 4rem;
    color: #10b981;
    animation: scaleIn 0.6s ease-out;
}

.animatedElements {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: particleFloat 2s ease-out infinite;
}

.particle1 {
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.particle2 {
    top: 50%;
    right: 0;
    animation-delay: 0.5s;
}

.particle3 {
    bottom: 0;
    left: 50%;
    animation-delay: 1s;
}

.particle4 {
    top: 50%;
    left: 0;
    animation-delay: 1.5s;
}

/* Typography */
.thankYouTitle {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thankYouMessage {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #64748b;
    text-align: center;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Next Steps Section */
.nextStepsInfo {
    margin-bottom: 50px;
}

.stepsTitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 30px;
}

.stepsTimeline {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 600px;
    margin: 0 auto;
}

.timelineStep {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.timelineStep:hover {
    background: #f1f5f9;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
}

.stepNumber {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.stepContent {
    flex: 1;
}

.stepTitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.stepDescription {
    color: #64748b;
    line-height: 1.6;
}

/* Immediate Actions */
.immediateActions {
    margin-bottom: 50px;
}

.actionsTitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 30px;
}

.resourceCards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.resourceCard {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.resourceCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.cardIcon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.cardTitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.cardDescription {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.resourceButton {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.resourceButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Urgent Contact */
.urgentContact {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    border-radius: 20px;
    border: 1px solid #f59e0b;
}

.urgentWrapper {
    display: flex;
    align-items: center;
    gap: 25px;
}

.urgentIcon {
    font-size: 3rem;
    color: #d97706;
    flex-shrink: 0;
}

.urgentText {
    flex: 1;
}

.urgentTitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 8px;
}

.urgentDescription {
    color: #a16207;
    margin: 0;
}

.urgentButtons {
    display: flex;
    gap: 15px;
}

.urgentButton {
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.primaryUrgent {
    background: #d97706;
    color: white;
}

.primaryUrgent:hover {
    background: #b45309;
    transform: translateY(-2px);
}

.secondaryUrgent {
    background: white;
    color: #d97706;
    border: 2px solid #d97706;
}

.secondaryUrgent:hover {
    background: #d97706;
    color: white;
}

/* Social Proof Section */
.socialProofSection {
    text-align: center;
}

.proofTitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.proofStatistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.proofItem {
    background: #f8fafc;
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.proofNumber {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 5px;
}

.proofLabel {
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
}

.featuredTestimonial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.testimonialQuote {
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonialAuthor {
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.authorName {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.authorRole {
    opacity: 0.9;
    margin: 0;
}

/* Sidebar Content */
.sidebarContent {
    display: flex;
    flex-direction: column;
}

.confirmationDetails,
.quickLinks,
.guaranteeInfo {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.detailsTitle,
.linksTitle,
.guaranteeTitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.confirmationInfo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.infoItem {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
}

.infoItem i {
    color: #3b82f6;
    width: 20px;
    text-align: center;
}

.infoLabel {
    font-weight: 600;
    color: #374151;
    min-width: 120px;
}

.infoValue {
    color: #64748b;
}

/* Quick Links */
.linksList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quickLink {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    color: #374151;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.quickLink:hover {
    background: #f1f5f9;
    color: #3b82f6;
    transform: translateX(5px);
}

.quickLink i {
    color: #64748b;
    width: 20px;
    text-align: center;
}

.quickLink:hover i {
    color: #3b82f6;
}

/* Guarantee Info */
.guaranteeInfo {
    text-align: center;
}

.guaranteeIcon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.guaranteeList {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.guaranteeItem {
    padding: 10px 0;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guaranteeItem::before {
    content: '✓';
    color: #10b981;
    font-weight: 600;
    width: 20px;
    text-align: center;
}

/* Continue Exploring Section */
.continueExploring {
    padding: 80px 0;
    background: white;
}

.exploringContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.exploringTitle {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.exploringGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.exploreCard {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.exploreCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.exploreImage {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.exploreCard:hover .exploreImage {
    transform: scale(1.1);
}

.exploreContent {
    padding: 30px;
    text-align: center;
}

.exploreTitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.exploreDescription {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.exploreButton {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.exploreButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Animations */
@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-20px) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-40px) scale(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gratitudeContainer {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankYouContent {
        padding: 40px;
    }
    
    .urgentWrapper {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .urgentButtons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .thankYouMainContent {
        padding-top: 60px;
    }
    
    .thankYouContent {
        padding: 30px 25px;
    }
    
    .thankYouTitle {
        font-size: 2rem;
    }
    
    .thankYouMessage {
        font-size: 1.1rem;
    }
    
    .stepsTimeline {
        gap: 20px;
    }
    
    .timelineStep {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .resourceCards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .proofStatistics {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .exploringGrid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .urgentWrapper {
        gap: 15px;
    }
    
    .urgentButtons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .urgentButton {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .thankYouTitle {
        font-size: 1.8rem;
    }
    
    .checkmarkIcon {
        font-size: 3rem;
    }
    
    .confirmationDetails,
    .quickLinks,
    .guaranteeInfo {
        padding: 25px 20px;
    }
    
    .featuredTestimonial {
        padding: 30px 25px;
    }
    
    .testimonialQuote {
        font-size: 1.1rem;
    }
    
    .proofStatistics {
        grid-template-columns: 1fr;
    }
    
    .proofNumber {
        font-size: 1.8rem;
    }
}

/* Print Styles */
@media print {
    .thankYouMainContent {
        background: white !important;
    }
    
    .resourceButton,
    .urgentButton,
    .exploreButton {
        display: none;
    }
    
    .animatedElements,
    .successAnimation {
        display: none;
    }
    
    .exploreCard,
    .resourceCard {
        break-inside: avoid;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .checkmarkIcon,
    .particle {
        animation: none;
    }
    
    .timelineStep:hover,
    .resourceCard:hover,
    .exploreCard:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .resourceCard,
    .exploreCard,
    .confirmationDetails,
    .quickLinks,
    .guaranteeInfo {
        border-width: 2px;
        border-color: #000;
    }
    
    .checkmarkIcon {
        color: #000;
    }
}


/* ===========================================
   404 ERROR PAGE STYLES
   =========================================== */

/* Main Content Layout */
.errorMainContent {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    padding-top: 80px;
}

.errorPageSection {
    padding: 60px 0 80px;
}

.errorContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

/* Error Visual Section */
.errorVisual {
    text-align: center;
    position: relative;
}

.errorIllustration {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

/* Neural Network Error Animation */
.neuralNetworkError {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 0 auto;
}

.errorNode {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    animation: pulseError 2s ease-in-out infinite;
}

.errorNode.node1 {
    top: 20px;
    left: 50px;
    animation-delay: 0s;
}

.errorNode.node2 {
    top: 80px;
    left: 20px;
    animation-delay: 0.4s;
}

.errorNode.node3 {
    top: 140px;
    left: 80px;
    animation-delay: 0.8s;
}

.errorNode.node4 {
    top: 60px;
    right: 30px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation-delay: 1.2s;
}

.errorNode.node5 {
    top: 120px;
    right: 60px;
    animation-delay: 1.6s;
}

/* Connection Lines */
.connectionLine {
    position: absolute;
    background: linear-gradient(45deg, #3b82f6, transparent);
    height: 2px;
    opacity: 0.6;
    animation: connectionPulse 3s ease-in-out infinite;
}

.connectionLine.line1 {
    top: 30px;
    left: 70px;
    width: 80px;
    transform: rotate(15deg);
}

.connectionLine.line2 {
    top: 90px;
    left: 40px;
    width: 60px;
    transform: rotate(-30deg);
    animation-delay: 0.5s;
}

.connectionLine.line3 {
    top: 150px;
    left: 100px;
    width: 100px;
    transform: rotate(25deg);
    animation-delay: 1s;
}

.connectionLine.line4 {
    top: 70px;
    right: 90px;
    width: 70px;
    transform: rotate(-45deg);
    animation-delay: 1.5s;
}

/* Broken Connection Effect */
.brokenConnection {
    position: absolute;
    top: 70px;
    right: 50px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ef4444, transparent, #ef4444);
    animation: brokenFlicker 1.5s ease-in-out infinite;
}

.brokenConnection::after {
    content: '⚡';
    position: absolute;
    top: -8px;
    right: 15px;
    color: #ef4444;
    font-size: 16px;
    animation: sparkle 1s ease-in-out infinite;
}

/* Error Code */
.errorCode {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ef4444, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.05em;
    text-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
    animation: glitchText 4s ease-in-out infinite;
}

/* Error Message */
.errorMessage {
    max-width: 600px;
    margin: 0 auto;
}

.errorTitle {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.errorDescription {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Error Actions */
.errorActions {
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.primaryActions {
    display: flex;
    gap: 20px;
}

.primaryButton, .secondaryButton {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.primaryButton {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.primaryButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.secondaryButton {
    background: white;
    color: #374151;
    border: 2px solid #e5e7eb;
}

.secondaryButton:hover {
    background: #f9fafb;
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
}

.buttonIcon {
    font-size: 18px;
}

/* Search Section */
.searchSection {
    width: 100%;
    text-align: center;
}

.searchTitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 20px;
}

.errorSearchForm {
    max-width: 500px;
    margin: 0 auto;
}

.searchInputGroup {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 8px 8px 8px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.searchInputGroup:focus-within {
    border-color: #3b82f6;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.searchInput {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #374151;
    background: transparent;
}

.searchInput::placeholder {
    color: #9ca3af;
}

.searchButton {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.searchButton:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Helpful Links */
.helpfulLinks {
    width: 100%;
}

.linksTitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 40px;
}

.linksGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.linkCard {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.linkCard:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.linkIcon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.linkTitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.linkDescription {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.linkButton {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.linkButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Error Support */
.errorSupport {
    width: 100%;
}

.supportBox {
    background: linear-gradient(135deg, #fef3c7, #fbbf24);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f59e0b;
    display: flex;
    align-items: center;
    gap: 30px;
}

.supportIcon {
    width: 80px;
    height: 80px;
    background: #d97706;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    flex-shrink: 0;
}

.supportContent {
    flex: 1;
}

.supportTitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 10px;
}

.supportDescription {
    color: #a16207;
    line-height: 1.6;
    margin-bottom: 20px;
}

.supportActions {
    display: flex;
    gap: 15px;
}

.supportButton {
    background: #d97706;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.supportButton:hover {
    background: #b45309;
    transform: translateY(-2px);
}

/* Error Stats */
.errorStats {
    width: 100%;
}

.statsContainer {
    text-align: center;
}

.statsTitle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.statsSubtitle {
    color: #64748b;
    margin-bottom: 40px;
}

.statsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.statItem {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

.statItem:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.statNumber {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #3b82f6;
    margin-bottom: 8px;
}

.statLabel {
    font-size: 14px;
    font-weight: 600;
}

/* Error Recommendations */
.errorRecommendations {
    padding: 80px 0;
    background: white;
}

.recommendationsContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.recommendationsTitle {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.recommendationsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.recommendationCard {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.recommendationCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.recommendationImage {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recommendationCard:hover .recommendationImage {
    transform: scale(1.1);
}

.recommendationContent {
    padding: 30px;
}

.recommendationTitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.recommendationDescription {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.recommendationDetails {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
}

.detail i {
    color: #3b82f6;
}

.recommendationButton {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.recommendationButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Animations */
@keyframes pulseError {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.2;
        transform: scaleX(0.8);
    }
}

@keyframes brokenFlicker {
    0%, 100% {
        opacity: 1;
    }
    25% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
    75% {
        opacity: 0.1;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 0.7;
    }
}

@keyframes glitchText {
    0%, 90%, 100% {
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    10% {
        transform: translate(-2px, 2px);
        filter: hue-rotate(90deg);
    }
    20% {
        transform: translate(2px, -2px);
        filter: hue-rotate(180deg);
    }
    30% {
        transform: translate(-2px, -2px);
        filter: hue-rotate(270deg);
    }
    40% {
        transform: translate(2px, 2px);
        filter: hue-rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .errorContainer {
        gap: 50px;
    }
    
    .supportBox {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .supportActions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .errorMainContent {
        padding-top: 60px;
    }
    
    .errorCode {
        font-size: 6rem;
    }
    
    .errorTitle {
        font-size: 2rem;
    }
    
    .errorDescription {
        font-size: 1.1rem;
    }
    
    .primaryActions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .primaryButton,
    .secondaryButton {
        width: 100%;
        justify-content: center;
    }
    
    .neuralNetworkError {
        width: 250px;
        height: 150px;
    }
    
    .errorNode {
        width: 16px;
        height: 16px;
    }
    
    .linksGrid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .statsGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .recommendationsGrid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .supportActions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .supportButton {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .errorCode {
        font-size: 4.5rem;
    }
    
    .errorTitle {
        font-size: 1.8rem;
    }
    
    .neuralNetworkError {
        width: 200px;
        height: 120px;
    }
    
    .linkCard,
    .recommendationCard {
        margin-bottom: 20px;
    }
    
    .recommendationContent {
        padding: 25px 20px;
    }
    
    .statsGrid {
        grid-template-columns: 1fr;
    }
    
    .searchInputGroup {
        padding: 6px 6px 6px 20px;
    }
    
    .searchButton {
        width: 42px;
        height: 42px;
    }
}

/* Print Styles */
@media print {
    .errorMainContent {
        background: white !important;
    }
    
    .primaryButton,
    .secondaryButton,
    .linkButton,
    .recommendationButton,
    .supportButton {
        display: none;
    }
    
    .neuralNetworkError,
    .animatedElements {
        display: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .errorNode,
    .connectionLine,
    .brokenConnection,
    .errorCode {
        animation: none;
    }
    
    .linkCard:hover,
    .recommendationCard:hover,
    .statItem:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .linkCard,
    .recommendationCard,
    .statItem {
        border-width: 2px;
        border-color: #000;
    }
    
    .errorCode {
        color: #000;
        background: none;
        -webkit-text-fill-color: #000;
    }
}


/* ===== COOKIE CONSENT MODAL STYLES ===== */

/* Основной overlay для модального окна */
.cookieConsentOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    animation: fadeIn 0.4s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Основное содержимое модала */
.cookieModalContent {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    max-width: 580px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-heavy);
    transform: translateY(30px);
    animation: slideIn 0.4s ease-out forwards;
    position: relative;
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Заголовок cookie модала */
.cookieHeader {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookieIconWrapper {
    margin-bottom: 1rem;
}

.cookieMainIcon {
    font-size: 3rem;
    color: var(--warning-orange);
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.3));
    animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.cookieTitle {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Основное содержимое */
.cookieBody {
    padding: 1.5rem 2rem;
}

.cookieDescription {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Опции cookies */
.cookieOptions {
    margin-bottom: 1.5rem;
}

.cookieCategory {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.cookieCategory:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.categoryHeader {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.cookieCheckbox {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    appearance: none;
    flex-shrink: 0;
}

.cookieCheckbox:checked {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.4);
}

.cookieCheckbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.cookieCheckbox:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.categoryLabel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
    transition: color 0.3s ease;
}

.categoryLabel:hover {
    color: var(--secondary-purple);
}

.categoryIcon {
    font-size: 1.1rem;
    color: var(--secondary-purple);
}

.categoryDescription {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin: 0;
    padding-left: 2.25rem;
}

/* Ссылка на детали */
.cookieDetailsLink {
    text-align: center;
    margin-bottom: 1rem;
}

.detailsLink {
    color: var(--secondary-purple);
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.detailsLink:hover {
    background: rgba(168, 85, 247, 0.1);
    color: white;
}

/* Кнопки действий */
.cookieActions {
    display: flex;
    gap: 0.75rem;
    padding: 0 2rem 2rem;
    flex-wrap: wrap;
}

.cookieButton {
    flex: 1;
    min-width: 120px;
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cookieButton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cookieButton:hover::before {
    left: 100%;
}

.acceptButton {
    background: linear-gradient(135deg, var(--success-green), #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.acceptButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.rejectButton {
    background: linear-gradient(135deg, var(--error-red), #dc2626);
    color: white;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.rejectButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.customizeButton {
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
    color: white;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.customizeButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.buttonIcon {
    font-size: 0.875rem;
}

/* Footer заметка */
.cookieFooterNote {
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footerText {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footerText i {
    color: var(--success-green);
}

/* ===== ПРОСТОЙ COOKIE БАННЕР ===== */

.cookieFloatingBanner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    z-index: 9999;
    transform: translateY(100px);
    animation: slideInBanner 0.5s ease-out forwards;
}

@keyframes slideInBanner {
    to {
        transform: translateY(0);
    }
}

.bannerContent {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bannerIcon {
    flex-shrink: 0;
}

.bannerIcon i {
    font-size: 1.75rem;
    color: var(--warning-orange);
}

.bannerText {
    flex: 1;
}

.bannerText p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 0.9rem;
}

.bannerLink {
    color: var(--secondary-purple);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.bannerLink:hover {
    color: white;
}

.bannerActions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.bannerButton {
    padding: 0.625rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.acceptBannerButton {
    background: var(--success-green);
    color: white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.acceptBannerButton:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.declineButton {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.declineButton:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* ===== АДАПТИВНЫЕ СТИЛИ ===== */

@media (max-width: 768px) {
    .cookieModalContent {
        max-width: 95%;
        margin: 1rem;
    }
    
    .cookieHeader,
    .cookieBody {
        padding: 1.5rem;
    }
    
    .cookieActions {
        padding: 0 1.5rem 1.5rem;
        flex-direction: column;
    }
    
    .cookieButton {
        min-width: auto;
    }
    
    .cookieTitle {
        font-size: 1.5rem;
    }
    
    .cookieFloatingBanner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .bannerContent {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .bannerActions {
        justify-content: center;
        width: 100%;
    }
    
    .bannerButton {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .cookieModalContent {
        width: 100%;
        height: 100%;
        border-radius: 0;
        max-height: 100vh;
    }
    
    .cookieHeader,
    .cookieBody {
        padding: 1rem;
    }
    
    .cookieActions {
        padding: 0 1rem 1rem;
    }
    
    .categoryHeader {
        gap: 0.5rem;
    }
    
    .categoryDescription {
        padding-left: 1.75rem;
    }
}

/* Скроллбар для модального окна */
.cookieModalContent::-webkit-scrollbar {
    width: 6px;
}

.cookieModalContent::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.cookieModalContent::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.cookieModalContent::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .cookieConsentOverlay,
    .cookieModalContent,
    .cookieFloatingBanner,
    .cookieButton,
    .cookieCategory {
        animation: none;
        transition: none;
    }
    
    .cookieMainIcon {
        animation: none;
    }
}

/* Focus styles для доступности */
.cookieButton:focus,
.cookieCheckbox:focus,
.detailsLink:focus,
.bannerButton:focus {
    outline: 2px solid var(--secondary-purple);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cookieModalContent {
        border: 2px solid white;
    }
    
    .cookieCategory {
        border: 1px solid white;
    }
    
    .cookieCheckbox {
        border: 2px solid white;
    }
}




.faqMainContent {
            max-width: 1200px;
            margin: 0 auto;
        }

        .faqIntroduction {
            text-align: center;
            margin-bottom: 3rem;
        }

        .faqMainTitle {
            font-size: 2.5rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .faqIntroText {
            font-size: 1.125rem;

            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .categoriesContainer {
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow-medium);
            overflow: hidden;
            border: 1px solid rgba(124, 58, 237, 0.1);
        }

        .categoryNavigation {
            display: flex;
            background: var(--light-gray);
            border-bottom: 1px solid rgba(124, 58, 237, 0.1);
            flex-wrap: wrap;
            gap: 0;
        }

        .categoryTab {
            flex: 1;
            min-width: 200px;
            background: none;
            border: none;
            padding: 1rem;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--medium-gray);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            border-bottom: 3px solid transparent;
            position: relative;
        }

        .categoryTab:hover {
            background: rgba(124, 58, 237, 0.05);
            color: var(--primary-purple);
        }

        .categoryTab.activeTab {
            background: white;
            color: var(--primary-purple);
            border-bottom-color: var(--primary-purple);
        }

        .faqContent {
            padding: 2rem;
        }

        .faqCategory {
            display: none;
        }

        .faqCategory.activeCategory {
            display: block;
        }

        .faqItem {
            background: white;
            border-radius: 16px;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-light);
            overflow: hidden;
            border: 1px solid rgba(124, 58, 237, 0.1);
            transition: all 0.3s ease;
        }

        .faqItem:hover {
            box-shadow: var(--shadow-medium);
            border-color: rgba(124, 58, 237, 0.2);
        }

        .faqQuestion {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .faqQuestion::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
            transform: scaleY(0);
            transition: transform 0.3s ease;
        }

        .faqQuestion:hover {
            background: rgba(124, 58, 237, 0.05);
        }

        .faqQuestion:hover::before {
            transform: scaleY(1);
        }

        .questionText {
            color: var(--dark-blue);
            font-size: 1.125rem;
            margin: 0;
            flex: 1;
            font-weight: 600;
            padding-right: 1rem;
        }

        .toggleButton {
            background: var(--primary-purple);
            color: white;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .toggleButton:hover {
            background: var(--secondary-purple);
            transform: scale(1.1);
        }

        .faqAnswer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(124, 58, 237, 0.02);
            opacity: 0;
        }

        .faqAnswer.active {
            max-height: 500px;
            opacity: 1;
            padding: 0 1.5rem 1.5rem 1.5rem;
        }

        .faqAnswer p {
            color: var(--medium-gray);
            line-height: 1.7;
            margin-top: 0.5rem;
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .categoryNavigation {
                flex-direction: column;
            }
            
            .categoryTab {
                min-width: auto;
                border-bottom: 1px solid rgba(124, 58, 237, 0.1);
                border-right: none;
            }
            
            .categoryTab:last-child {
                border-bottom: none;
            }
            
            .faqContent {
                padding: 1rem;
            }
        }