@import "https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap";
*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%;width:100%}
body{font-family:'Work Sans',sans-serif;background:#0a0e1a;color:#EEF7E7;line-height:1.6;display:flex;flex-direction:column}
.headerGrid{background:linear-gradient(135deg,#0a0e1a 0%,#1a1f2e 100%);border-bottom:2px solid #e335764d;box-shadow:0 4px 20px #e3357626;padding:25px 0}
.headerGrid .containerBox{max-width:1200px;margin:0 auto;padding:0 20px;display:grid;grid-template-columns:auto 1fr;grid-template-rows:auto auto;gap:20px 30px;align-items:center}
.logoWrapper{grid-column:1;grid-row:1;display:flex;align-items:center;justify-content:center;background:#3b89921a;padding:12px;border-radius:8px;border:1px solid #3b89924d}
.logoWrapper img{height:95px;width:95px;object-fit:contain}
.companyNameBox{grid-column:2;grid-row:1;display:flex;align-items:center;justify-content:flex-end}
.companyNameBox h1{font-family:'Merriweather',serif;font-size:2.2rem;font-weight:700;color:#E43576;text-shadow:0 0 20px #e4357699;letter-spacing:1px}
.navContainer{grid-column:1 / -1;grid-row:2;margin-top:15px}
.navContainer nav{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;padding:10px 0}
.navContainer nav a{font-family:'Work Sans',sans-serif;font-size:1rem;font-weight:600;color:#EEF7E7;text-decoration:none;padding:12px 28px;background:#3b899226;border:1px solid #3b899266;border-radius:6px;transition:all 180ms cubic-bezier(0.4,0,0.2,1);position:relative;overflow:hidden}
.navContainer nav a::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,#e4357633,transparent);transition:left 200ms ease}
.navContainer nav a:hover::before{left:100%}
.navContainer nav a:hover{background:#e4357633;border-color:#E43576;color:#E43576;box-shadow:0 0 15px #e4357666}
main{flex:1}
.footerDark{background:linear-gradient(180deg,#0f1420 0%,#0a0e1a 100%);border-top:2px solid #3b89924d;padding:50px 0 30px;margin-top:80px}
.footerDark .contentWrapper{max-width:1200px;margin:0 auto;padding:0 20px}
.footerGrid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:45px;margin-bottom:40px}
.footerSection h3{font-family:'Merriweather',serif;font-size:1.3rem;color:#E43576;margin-bottom:20px;text-shadow:0 0 10px #e4357666}
.footerSection p,.footerSection a{font-size:.95rem;line-height:1.8;color:#EEF7E7;margin-bottom:10px}
.footerSection a{text-decoration:none;display:inline-flex;align-items:center;gap:8px;transition:color 150ms ease}
.footerSection a:hover{color:#3B8992}
.footerSection a i{color:#3B8992}
.legalNav{display:flex;gap:25px;flex-wrap:wrap;padding:25px 0;border-top:1px solid #3b899233;margin-bottom:20px}
.legalNav a{font-size:.9rem;color:#EEF7E7;text-decoration:none;padding:8px 0;border-bottom:1px solid transparent;transition:all 150ms ease}
.legalNav a:hover{color:#E43576;border-bottom-color:#E43576}
.copyrightBox{text-align:center;font-size:.85rem;color:#eef7e799;padding-top:20px}
.cookieBox{position:fixed;bottom:25px;left:25px;background:linear-gradient(135deg,#1a1f2e 0%,#0f1420 100%);border:2px solid #e4357666;border-radius:12px;padding:25px;max-width:480px;width:calc(100% - 50px);box-shadow:0 8px 32px #e435764d;z-index:9999;display:none}
.cookieBox[data-vis="show"]{display:block}
.cookieBox h4{font-family:'Merriweather',serif;font-size:1.2rem;color:#E43576;margin-bottom:12px;text-shadow:0 0 8px #e4357680}
.cookieBox p{font-size:.9rem;line-height:1.6;color:#EEF7E7;margin-bottom:18px}
.cookieGrid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:18px}
.cookieCard{background:#3b89921a;border:1px solid #3b89924d;border-radius:6px;padding:12px}
.cookieCard label{display:flex;align-items:center;gap:8px;font-size:.85rem;color:#EEF7E7;cursor:pointer}
.cookieCard input[type="checkbox"]{width:18px;height:18px;cursor:pointer}
.cookieBtnRow{display:flex;gap:10px;justify-content:flex-end}
.cookieBtn{font-family:'Work Sans',sans-serif;font-size:.9rem;font-weight:600;padding:10px 24px;border:none;border-radius:50px;cursor:pointer;transition:all 180ms ease}
.cookieBtn.accept{background:linear-gradient(135deg,#E43576 0%,#c42860 100%);color:#EEF7E7;box-shadow:0 4px 12px #e4357666}
.cookieBtn.accept:hover{box-shadow:0 6px 20px #e4357699;transform:translateY(-2px)}
.cookieBtn.deny{background:#3b899233;color:#EEF7E7;border:1px solid #3b899266}
.cookieBtn.deny:hover{background:#3b89924d;border-color:#3B8992}
@media (max-width: 768px) {
.headerGrid .containerBox{grid-template-columns:1fr;grid-template-rows:auto auto auto;gap:20px}
.logoWrapper{grid-column:1;grid-row:1;justify-self:center}
.companyNameBox{grid-column:1;grid-row:2;justify-content:center}
.companyNameBox h1{font-size:1.6rem;text-align:center}
.navContainer{grid-column:1;grid-row:3}
.navContainer nav{flex-direction:column;align-items:stretch}
.navContainer nav a{text-align:center;padding:14px 20px}
.footerGrid{grid-template-columns:1fr;gap:35px}
.legalNav{flex-direction:column;gap:15px}
.cookieBox{left:15px;right:15px;bottom:15px;width:auto;max-width:none}
.cookieGrid{grid-template-columns:1fr}
.cookieBtnRow{flex-direction:column}
}
@media (max-width: 375px) {
.companyNameBox h1{font-size:1.4rem}
.logoWrapper img{height:70px;width:70px}
}
.policy-wrapper{max-width:1200px;margin:0 auto;padding:80px 20px;background:#0a0a0a}
.policy-wrapper p{font-size:16px;line-height:1.8;color:#e8e8e8;margin:0 0 24px;font-weight:400}
.policy-wrapper p + p{margin-top:20px}
.policy-wrapper strong,.policy-wrapper b{color:#EEF7E7;font-weight:600;letter-spacing:.3px}
.policy-wrapper em,.policy-wrapper i{font-style:italic;color:#3B8992}
.policy-wrapper a{color:#E43576;text-decoration:none;border-bottom:1px solid #e4357666;transition:all 200ms cubic-bezier(0.4,0,0.2,1);padding-bottom:2px}
.policy-wrapper a:hover{color:#EEF7E7;border-bottom-color:#EEF7E7;text-shadow:0 0 8px #e4357699}
.policy-wrapper a:active{color:#3B8992;border-bottom-color:#3B8992}
.policy-wrapper table{width:100%;border-collapse:collapse;margin:40px 0;background:#3b89920d;border:1px solid #3b899233;border-radius:8px;overflow:hidden}
.policy-wrapper thead{background:#e4357626}
.policy-wrapper thead tr{border-bottom:2px solid #e4357666}
.policy-wrapper tbody tr{border-bottom:1px solid #3b899226;transition:background 180ms ease}
.policy-wrapper tbody tr:last-child{border-bottom:none}
.policy-wrapper tbody tr:hover{background:#3b899214}
.policy-wrapper th{padding:18px 20px;text-align:left;font-size:15px;font-weight:600;color:#EEF7E7;letter-spacing:.5px;text-transform:uppercase}
.policy-wrapper td{padding:16px 20px;font-size:15px;color:#d4d4d4;line-height:1.6}
.policy-wrapper hr{border:none;height:2px;background:linear-gradient(90deg,#e4357600 0%,#e4357699 50%,#e4357600 100%);margin:60px 0;position:relative}
.policy-wrapper hr::after{content:'';position:absolute;top:-4px;left:50%;transform:translateX(-50%);width:8px;height:8px;background:#E43576;border-radius:50%;box-shadow:0 0 12px #e43576cc}
@media (max-width: 768px) {
.policy-wrapper{padding:60px 16px}
.policy-wrapper p{font-size:15px;line-height:1.7;margin-bottom:20px}
.policy-wrapper table{font-size:14px;margin:30px 0}
.policy-wrapper th,.policy-wrapper td{padding:12px 14px;font-size:14px}
.policy-wrapper th{font-size:13px}
.policy-wrapper hr{margin:40px 0}
}
@media (max-width: 375px) {
.policy-wrapper{padding:40px 12px}
.policy-wrapper p{font-size:14px;margin-bottom:18px}
.policy-wrapper table{font-size:13px;margin:24px 0}
.policy-wrapper th,.policy-wrapper td{padding:10px 12px;font-size:13px}
.policy-wrapper th{font-size:12px}
}
.heroBanner{position:relative;height:85vh;min-height:550px;max-height:750px;overflow:hidden;display:flex;align-items:center;justify-content:center}
.heroBanner img{position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;object-position:center}
.heroBanner::after{content:'';position:absolute;bottom:0;left:0;width:100%;height:70%;background:linear-gradient(to top,#14141cf2,transparent);pointer-events:none}
.heroContentBox{position:relative;z-index:2;max-width:1200px;width:90%;margin:0 auto;padding:0 20px}
.heroContentBox h1{font-size:3.2rem;line-height:1.15;color:#EEF7E7;margin:0 0 24px;font-weight:700}
.heroContentBox h1 .accentPhrase{color:#E43576;display:inline-block;position:relative}
.heroContentBox h1 .accentPhrase::after{content:'';position:absolute;bottom:-6px;left:0;width:100%;height:3px;background:linear-gradient(90deg,#E43576,#3B8992)}
.heroContentBox .heroSubtext{font-size:1.25rem;line-height:1.6;color:#EEF7E7;max-width:680px;margin:0 0 32px;opacity:.92}
.heroButton--main{display:inline-block;padding:16px 40px;background:linear-gradient(135deg,#E43576,#c92d64);color:#EEF7E7;font-size:1.1rem;font-weight:600;border-radius:8px;text-decoration:none;transition:all 220ms cubic-bezier(0.4,0,0.2,1);box-shadow:0 4px 16px #e4357659}
.heroButton--main:hover{transform:translateY(-3px);box-shadow:0 8px 24px #e4357680;background:linear-gradient(135deg,#f03d83,#E43576)}
.interactiveEventsWrapper{background:#1a1a24;padding:90px 0}
.eventsContainer-box{max-width:1200px;width:90%;margin:0 auto}
.eventsContainer-box h2{font-size:2.6rem;color:#EEF7E7;margin:0 0 16px;font-weight:700}
.eventsContainer-box h2::before{content:'';display:inline-block;width:6px;height:42px;background:linear-gradient(180deg,#E43576,#3B8992);margin-right:16px;vertical-align:middle}
.eventsIntroText{font-size:1.15rem;line-height:1.7;color:#c4c4d2;margin:0 0 50px;max-width:800px}
.eventsGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.eventCardItem{background:linear-gradient(145deg,#242433,#1e1e2c);border-radius:10px;padding:32px 26px;border:1px solid #3b899240;transition:all 200ms ease;position:relative}
.eventCardItem::before{content:'';position:absolute;top:0;left:0;width:100%;height:4px;background:linear-gradient(90deg,#E43576,#3B8992);border-radius:10px 10px 0 0;opacity:0;transition:opacity 200ms ease}
.eventCardItem:hover{transform:translateY(-6px);border-color:#3b899299;box-shadow:0 12px 32px #e4357633}
.eventCardItem:hover::before{opacity:1}
.eventCardItem .d-icons{font-size:2.8rem;color:#3B8992;margin-bottom:20px}
.eventCardItem h3{font-size:1.4rem;color:#EEF7E7;margin:0 0 14px;font-weight:600}
.eventCardItem p{font-size:1.02rem;line-height:1.65;color:#a8a8ba;margin:0}
.realWorldRelevance{background:linear-gradient(135deg,#0f0f18,#1a1a24);padding:95px 0;position:relative;overflow:hidden}
.realWorldRelevance::before{content:'';position:absolute;top:-50%;right:-10%;width:600px;height:600px;background:radial-gradient(circle,#e4357626,transparent);border-radius:50%}
.relevanceLayout{max-width:1200px;width:90%;margin:0 auto;display:grid;grid-template-columns:1fr 1.2fr;gap:60px;align-items:center;position:relative;z-index:1}
.relevanceImageBox img{width:100%;height:auto;border-radius:12px;box-shadow:0 16px 48px #00000080}
.relevanceContent h2{font-size:2.5rem;color:#EEF7E7;margin:0 0 24px;font-weight:700;position:relative}
.relevanceContent h2 .coloredText{color:#E43576}
.relevanceContent .descriptionPara{font-size:1.08rem;line-height:1.75;color:#b8b8c8;margin:0 0 32px}
.relevanceList{list-style:none;padding:0;margin:0 0 36px}
.relevanceList li{padding-left:38px;margin-bottom:18px;position:relative;font-size:1.05rem;line-height:1.6;color:#c4c4d2}
.relevanceList li::before{content:'→';position:absolute;left:0;top:0;color:#3B8992;font-size:1.4rem;font-weight:700}
.relevanceButton{display:inline-block;padding:14px 36px;background:#3b899233;color:#3B8992;border:2px solid #3B8992;border-radius:8px;text-decoration:none;font-size:1.05rem;font-weight:600;transition:all 180ms ease}
.relevanceButton:hover{background:#3B8992;color:#EEF7E7;transform:translateX(5px)}
.trustIndicators{background:#14141c;padding:88px 0}
.trustWrapper{max-width:1200px;width:90%;margin:0 auto}
.trustWrapper h2{font-size:2.5rem;color:#EEF7E7;text-align:center;margin:0 0 20px;font-weight:700}
.trustWrapper .subheadingText{font-size:1.12rem;line-height:1.65;color:#a8a8ba;text-align:center;margin:0 auto 56px;max-width:720px}
.trustMetrics{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;margin-bottom:70px}
.metricBox{background:linear-gradient(145deg,#1e1e2c,#242433);padding:36px 24px;border-radius:10px;text-align:center;border:1px solid #e4357633;transition:all 200ms ease}
.metricBox:hover{border-color:#e4357699;transform:scale(1.05);box-shadow:0 8px 24px #e4357640}
.metricBox .metricNumber{font-size:3rem;font-weight:700;color:#E43576;margin:0 0 12px;line-height:1}
.metricBox .metricLabel{font-size:1.05rem;color:#c4c4d2;margin:0}
.testimonialSection{background:#3b899214;padding:48px;border-radius:12px;border-left:5px solid #3B8992}
.testimonialSection .quoteIcon{font-size:3.5rem;color:#3B8992;opacity:.4;line-height:1;margin-bottom:20px}
.testimonialSection blockquote{font-size:1.2rem;line-height:1.8;color:#d4d4e0;margin:0 0 28px;font-style:italic}
.testimonialAuthor{display:flex;align-items:center;gap:20px}
.testimonialAuthor img{width:70px;height:70px;border-radius:50%;object-fit:cover;border:3px solid #3B8992}
.authorInfo h4{font-size:1.15rem;color:#EEF7E7;margin:0 0 4px;font-weight:600}
.authorInfo .authorRole{font-size:.95rem;color:#a8a8ba;margin:0}
.interactiveLearning{background:linear-gradient(135deg,#1a1a24,#242433);padding:92px 0}
.learningContainer{max-width:1200px;width:90%;margin:0 auto}
.learningContainer h2{font-size:2.6rem;color:#EEF7E7;margin:0 0 18px;font-weight:700;text-align:center}
.learningContainer .leadText{font-size:1.1rem;line-height:1.7;color:#b8b8c8;text-align:center;max-width:750px;margin:0 auto 58px}
.progressTracker{background:linear-gradient(145deg,#1e1e2c,#14141c);border-radius:12px;padding:42px 36px;border:1px solid #3b89924d;margin-bottom:48px}
.progressTracker h3{font-size:1.6rem;color:#EEF7E7;margin:0 0 32px;font-weight:600}
.stepsRow{display:flex;justify-content:space-between;align-items:flex-start;gap:24px;position:relative}
.stepsRow::before{content:'';position:absolute;top:24px;left:60px;right:60px;height:3px;background:linear-gradient(90deg,#E43576,#3B8992);z-index:0}
.stepItem{flex:1;position:relative;z-index:1}
.stepCircle{width:48px;height:48px;border-radius:50%;background:linear-gradient(135deg,#E43576,#3B8992);color:#EEF7E7;font-size:1.3rem;font-weight:700;display:flex;align-items:center;justify-content:center;margin:0 auto 16px;box-shadow:0 6px 18px #e4357666}
.stepItem h4{font-size:1.15rem;color:#EEF7E7;margin:0 0 10px;text-align:center;font-weight:600}
.stepItem p{font-size:.98rem;line-height:1.55;color:#a8a8ba;margin:0;text-align:center}
.interactiveFeatures{display:grid;grid-template-columns:repeat(2,1fr);gap:30px}
.featureCard{background:linear-gradient(145deg,#242433,#1e1e2c);padding:36px 32px;border-radius:10px;border:1px solid #e4357633;transition:all 200ms ease;position:relative;overflow:hidden}
.featureCard::after{content:'';position:absolute;top:-50%;right:-50%;width:200px;height:200px;background:radial-gradient(circle,#3b899226,transparent);border-radius:50%;transition:all 200ms ease}
.featureCard:hover{border-color:#e4357699;transform:translateY(-4px);box-shadow:0 12px 28px #e4357640}
.featureCard:hover::after{top:-30%;right:-30%}
.featureCard .d-icons{font-size:2.5rem;color:#E43576;margin-bottom:18px}
.featureCard h4{font-size:1.35rem;color:#EEF7E7;margin:0 0 14px;font-weight:600}
.featureCard p{font-size:1.02rem;line-height:1.65;color:#b8b8c8;margin:0}
.businessSolutions{background:#0f0f18;padding:90px 0}
.businessWrap{max-width:1200px;width:90%;margin:0 auto}
.businessHeader{text-align:center;margin-bottom:68px}
.businessHeader h2{font-size:2.7rem;color:#EEF7E7;margin:0 0 20px;font-weight:700}
.businessHeader h2 .emphasis{color:#3B8992;position:relative}
.businessHeader h2 .emphasis::after{content:'';position:absolute;bottom:-4px;left:0;width:100%;height:2px;background:#3B8992}
.businessHeader p{font-size:1.12rem;line-height:1.7;color:#b8b8c8;max-width:680px;margin:0 auto}
.solutionsLayout{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center}
.solutionsImageArea img{width:100%;height:auto;border-radius:12px;box-shadow:0 16px 48px #0009}
.solutionsContent .benefitItem{background:#3b899214;padding:28px 26px;border-radius:10px;margin-bottom:22px;border-left:4px solid #3B8992;transition:all 180ms ease}
.solutionsContent .benefitItem:hover{background:#3b899226;transform:translateX(8px)}
.benefitItem h4{font-size:1.3rem;color:#EEF7E7;margin:0 0 12px;font-weight:600}
.benefitItem p{font-size:1.02rem;line-height:1.65;color:#c4c4d2;margin:0}
.ctaFinalSection{background:linear-gradient(135deg,#1a1a24,#242433);padding:85px 0;text-align:center}
.ctaBox{max-width:850px;width:90%;margin:0 auto;background:linear-gradient(145deg,#242433,#1e1e2c);padding:60px 50px;border-radius:16px;border:2px solid #e4357666;box-shadow:0 20px 60px #00000080}
.ctaBox h2{font-size:2.4rem;color:#EEF7E7;margin:0 0 20px;font-weight:700}
.ctaBox p{font-size:1.15rem;line-height:1.7;color:#b8b8c8;margin:0 0 36px}
.ctaButtons{display:flex;gap:20px;justify-content:center;flex-wrap:wrap}
.ctaButton--primary{display:inline-block;padding:16px 42px;background:linear-gradient(135deg,#E43576,#c92d64);color:#EEF7E7;font-size:1.08rem;font-weight:600;border-radius:8px;text-decoration:none;transition:all 200ms cubic-bezier(0.4,0,0.2,1);box-shadow:0 6px 20px #e4357666}
.ctaButton--primary:hover{transform:translateY(-3px);box-shadow:0 10px 28px #e4357699}
.ctaButton--secondary{display:inline-block;padding:16px 42px;background:transparent;color:#3B8992;border:2px solid #3B8992;font-size:1.08rem;font-weight:600;border-radius:8px;text-decoration:none;transition:all 200ms ease}
.ctaButton--secondary:hover{background:#3B8992;color:#EEF7E7}
@media (max-width: 1366px) {
.heroBanner{height:75vh;min-height:500px}
.heroContentBox h1{font-size:2.8rem}
.eventsGrid{grid-template-columns:repeat(2,1fr)}
.trustMetrics{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 768px) {
.heroBanner{height:65vh;min-height:450px}
.heroContentBox h1{font-size:2.2rem}
.heroContentBox .heroSubtext{font-size:1.08rem}
.eventsGrid,.interactiveFeatures,.solutionsLayout,.relevanceLayout{grid-template-columns:1fr}
.trustMetrics{grid-template-columns:1fr;gap:24px}
.stepsRow{flex-direction:column;gap:32px}
.stepsRow::before{display:none}
.relevanceLayout{gap:40px}
.solutionsLayout{gap:40px}
.ctaBox{padding:40px 30px}
.ctaButtons{flex-direction:column;align-items:center}
.ctaButton--primary,.ctaButton--secondary{width:100%;max-width:320px}
}
@media (max-width: 375px) {
.heroContentBox h1{font-size:1.9rem}
.eventsContainer-box h2,.relevanceContent h2,.trustWrapper h2,.learningContainer h2,.businessHeader h2{font-size:2rem}
.heroBanner{height:60vh}
.ctaBox h2{font-size:1.9rem}
}
.contactHeroWrap{position:relative;min-height:420px;display:flex;align-items:center;justify-content:center;overflow:hidden;background:linear-gradient(145deg,#1a1a2e 0%,#16213e 50%,#0f3460 100%);padding:80px 20px}
.contactHeroWrap::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:radial-gradient(circle at 30% 40%,#e4357626 0%,transparent 60%),radial-gradient(circle at 70% 60%,#3b89921f 0%,transparent 50%);filter:blur(60px);z-index:1}
.heroContentBox{position:relative;z-index:2;text-align:center;max-width:900px;backdrop-filter:blur(12px);background:#0f346040;padding:50px 40px;border:1px solid #e4357633;border-radius:8px}
.heroContentBox h1{font-size:3.2rem;color:#EEF7E7;margin:0 0 18px;font-weight:700;line-height:1.15;text-shadow:0 2px 8px #0006}
.heroContentBox .sublineHero{font-size:1.4rem;color:#E43576;margin:0 0 12px;font-weight:600;letter-spacing:.5px}
.heroContentBox .descHero{font-size:1.1rem;color:#eef7e7d9;margin:0;line-height:1.6}
.infoContactSectionWrap{background:#0f1419;padding:90px 20px}
.infoContactSectionWrap .centerContentBox{max-width:1200px;margin:0 auto}
.infoContactSectionWrap h2{font-size:2.4rem;color:#EEF7E7;text-align:center;margin:0 0 50px;font-weight:700}
.infoContactSectionWrap h2::after{content:'';display:block;width:80px;height:4px;background:linear-gradient(90deg,#E43576 0%,#3B8992 100%);margin:20px auto 0;border-radius:2px}
.contactInfoGrid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:30px;margin-bottom:60px}
.infoCardBox{background:linear-gradient(135deg,#1a1d28 0%,#0f1419 100%);border:1px solid #e4357633;border-radius:10px;padding:35px 28px;transition:all 220ms cubic-bezier(0.4,0,0.2,1);position:relative}
.infoCardBox::before{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg,#e4357614 0%,#3b89920d 100%);opacity:0;transition:opacity 200ms ease;border-radius:10px;pointer-events:none}
.infoCardBox:hover{transform:translateY(-6px);border-color:#E43576;box-shadow:0 12px 28px #e4357633}
.infoCardBox:hover::before{opacity:1}
.iconBoxContact{width:56px;height:56px;background:linear-gradient(135deg,#E43576 0%,#c12960 100%);border-radius:8px;display:flex;align-items:center;justify-content:center;margin-bottom:20px;box-shadow:0 4px 12px #e435764d}
.iconBoxContact svg{width:28px;height:28px;fill:#EEF7E7}
.infoCardBox h3{font-size:1.3rem;color:#EEF7E7;margin:0 0 12px;font-weight:600}
.infoCardBox p{font-size:1rem;color:#eef7e7bf;margin:0;line-height:1.65}
.infoCardBox a{color:#3B8992;text-decoration:none;transition:color 180ms ease}
.infoCardBox a:hover{color:#E43576}
.formSectionWrap{background:linear-gradient(160deg,#1a1d28 0%,#0f1419 100%);padding:90px 20px}
.formSectionWrap .centerContentBox{max-width:800px;margin:0 auto}
.formSectionWrap h2{font-size:2.2rem;color:#EEF7E7;text-align:center;margin:0 0 15px;font-weight:700}
.formSectionWrap .formIntroText{font-size:1.05rem;color:#eef7e7b3;text-align:center;margin:0 0 45px;line-height:1.6}
.contactFormBox{background:#1a1d2899;border:1px solid #3b899240;border-radius:12px;padding:45px 40px;backdrop-filter:blur(10px)}
.formGroupBox{margin-bottom:28px}
.formGroupBox label{display:block;font-size:.95rem;color:#EEF7E7;margin-bottom:10px;font-weight:500;letter-spacing:.3px}
.formGroupBox input[type="text"],.formGroupBox input[type="email"]{width:100%;padding:14px 18px;background:#0f1419cc;border:1px solid #e435764d;border-radius:6px;color:#EEF7E7;font-size:1rem;transition:all 180ms ease;box-sizing:border-box}
.formGroupBox input[type="text"]:focus,.formGroupBox input[type="email"]:focus{outline:none;border-color:#E43576;box-shadow:0 0 0 3px #e4357626;background:#0f1419f2}
.radioGroupBox{margin-bottom:32px}
.radioGroupBox .radioLabel{display:block;font-size:.95rem;color:#EEF7E7;margin-bottom:16px;font-weight:500;letter-spacing:.3px}
.radioOptionsWrap{display:flex;flex-wrap:wrap;gap:18px}
.radioItemBox{position:relative}
.radioItemBox input[type="radio"]{position:absolute;opacity:0;cursor:pointer}
.radioItemBox .radioVisualBox{display:flex;align-items:center;padding:12px 20px;background:#0f141999;border:2px solid #3b89924d;border-radius:6px;cursor:pointer;transition:all 180ms ease;user-select:none}
.radioItemBox input[type="radio"]:checked + .radioVisualBox{background:#e4357626;border-color:#E43576;box-shadow:0 0 0 3px #e435761a}
.radioItemBox .radioVisualBox::before{content:'';width:20px;height:20px;border:2px solid #eef7e766;border-radius:50%;margin-right:10px;transition:all 180ms ease;box-sizing:border-box;display:flex;align-items:center;justify-content:center}
.radioItemBox input[type="radio"]:checked + .radioVisualBox::before{border-color:#E43576;background:#E43576;box-shadow:inset 0 0 0 4px #0f1419e6}
.radioItemBox .radioVisualBox span{color:#EEF7E7;font-size:.95rem}
.privacyCheckboxBox{margin-bottom:28px;display:flex;align-items:flex-start}
.privacyCheckboxBox input[type="checkbox"]{width:20px;height:20px;margin-right:12px;cursor:pointer;flex-shrink:0;margin-top:2px;accent-color:#E43576}
.privacyCheckboxBox label{font-size:.9rem;color:#eef7e7bf;line-height:1.5;cursor:pointer}
.privacyCheckboxBox a{color:#3B8992;text-decoration:underline;transition:color 180ms ease}
.privacyCheckboxBox a:hover{color:#E43576}
.submitBtnBox{text-align:center}
.submitBtnBox button{padding:16px 50px;background:linear-gradient(135deg,#E43576 0%,#c12960 100%);border:none;border-radius:8px;color:#EEF7E7;font-size:1.1rem;font-weight:600;cursor:pointer;transition:all 200ms cubic-bezier(0.4,0,0.2,1);box-shadow:0 4px 16px #e435764d;letter-spacing:.5px}
.submitBtnBox button:hover{transform:translateY(-3px);box-shadow:0 8px 24px #e4357673;background:linear-gradient(135deg,#f03d82 0%,#d63070 100%)}
.submitBtnBox button:active{transform:translateY(-1px)}
.mapAlternativeSectionWrap{background:#0f1419;padding:90px 20px}
.mapAlternativeSectionWrap .centerContentBox{max-width:1200px;margin:0 auto}
.mapAlternativeSectionWrap h2{font-size:2.2rem;color:#EEF7E7;text-align:center;margin:0 0 45px;font-weight:700}
.locationVisualBox{background:linear-gradient(135deg,#1a1d28 0%,#0f1419 100%);border:1px solid #3b899240;border-radius:12px;padding:50px 40px;text-align:center;position:relative;overflow:hidden}
.locationVisualBox::before{content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle,#e4357614 0%,transparent 70%);animation:pulseLocation 8s ease-in-out infinite}
@keyframes pulseLocation {
0%,100%{transform:scale(1);opacity:.6}
50%{transform:scale(1.1);opacity:.3}
}
.locationPinIcon{width:80px;height:80px;margin:0 auto 25px;position:relative;z-index:2}
.locationPinIcon svg{width:100%;height:100%;fill:#E43576;filter:drop-shadow(0 4px 12px #e4357666)}
.locationVisualBox h3{font-size:1.6rem;color:#EEF7E7;margin:0 0 15px;font-weight:600;position:relative;z-index:2}
.locationVisualBox .addressText{font-size:1.15rem;color:#eef7e7cc;margin:0 0 10px;line-height:1.7;position:relative;z-index:2}
.faqSectionWrap{background:linear-gradient(160deg,#1a1d28 0%,#0f1419 100%);padding:90px 20px}
.faqSectionWrap .centerContentBox{max-width:900px;margin:0 auto}
.faqSectionWrap h2{font-size:2.2rem;color:#EEF7E7;text-align:center;margin:0 0 50px;font-weight:700}
.faqItemBox{background:#1a1d2880;border:1px solid #3b899233;border-radius:8px;margin-bottom:20px;overflow:hidden}
.faqItemBox input[type="checkbox"]{display:none}
.faqQuestionLabel{display:block;padding:22px 28px;cursor:pointer;font-size:1.15rem;color:#EEF7E7;font-weight:600;position:relative;transition:all 180ms ease;user-select:none}
.faqQuestionLabel::after{content:'+';position:absolute;right:28px;top:50%;transform:translateY(-50%);font-size:1.8rem;color:#E43576;transition:transform 200ms ease}
.faqItemBox input[type="checkbox"]:checked + .faqQuestionLabel::after{transform:translateY(-50%) rotate(45deg)}
.faqItemBox input[type="checkbox"]:checked + .faqQuestionLabel{background:#e435761a;border-bottom:1px solid #3b899233}
.faqAnswerBox{max-height:0;overflow:hidden;transition:max-height 250ms ease}
.faqItemBox input[type="checkbox"]:checked ~ .faqAnswerBox{max-height:400px}
.faqAnswerBox p{padding:22px 28px;margin:0;font-size:1rem;color:#eef7e7bf;line-height:1.7}
@media (max-width: 768px) {
.heroContentBox h1{font-size:2.2rem}
.heroContentBox .sublineHero{font-size:1.1rem}
.heroContentBox .descHero{font-size:1rem}
.heroContentBox{padding:35px 25px}
.contactInfoGrid{grid-template-columns:1fr}
.contactFormBox{padding:30px 25px}
.radioOptionsWrap{flex-direction:column}
.infoContactSectionWrap h2,.formSectionWrap h2,.mapAlternativeSectionWrap h2,.faqSectionWrap h2{font-size:1.9rem}
}
@media (max-width: 375px) {
.heroContentBox h1{font-size:1.8rem}
.contactFormBox{padding:25px 20px}
}
.heroTitleBox{position:relative;background:linear-gradient(135deg,#0a0a0a 0%,#1a1a2e 50%,#16213e 100%);padding:120px 40px 100px;overflow:hidden;margin-bottom:0}
.heroTitleBox::before{content:'';position:absolute;top:-50%;right:-20%;width:80%;height:200%;background:radial-gradient(circle,#e4357626 0%,transparent 70%);animation:pulseGlow 8s ease-in-out infinite}
.heroTitleBox::after{content:'';position:absolute;bottom:-30%;left:-15%;width:70%;height:150%;background:radial-gradient(circle,#3b89921f 0%,transparent 65%);animation:pulseGlow 10s ease-in-out infinite reverse}
@keyframes pulseGlow {
0%,100%{transform:scale(1) translateY(0);opacity:1}
50%{transform:scale(1.1) translateY(20px);opacity:.7}
}
.heroInnerWrapper{max-width:1200px;margin:0 auto;position:relative;z-index:2;display:flex;align-items:center;gap:60px}
.heroTextContent{flex:1}
.heroTextContent h1{font-size:3.2rem;line-height:1.15;color:#EEF7E7;margin:0 0 24px;font-weight:700;text-shadow:0 0 40px #e4357666}
.heroTextContent h1 span{display:block;margin-top:12px}
.heroTextContent h1 .line1{font-size:3.2rem;color:#EEF7E7}
.heroTextContent h1 .line2{font-size:3.6rem;color:#E43576;text-shadow:0 0 30px #e4357699}
.heroTextContent h1 .line3{font-size:4rem;background:linear-gradient(120deg,#E43576 0%,#3B8992 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.heroTextContent p{font-size:1.15rem;line-height:1.7;color:#c5d3e0;margin:0}
.heroImageAccent{flex:0 0 380px;position:relative}
.heroImageAccent img{width:100%;height:420px;object-fit:cover;border-radius:8px;box-shadow:0 20px 60px #0009 0 0 40px #e435764d;border:2px solid #e4357666}
.curvedLineDecor{position:absolute;top:15%;left:5%;width:300px;height:300px;border:3px solid #3b899240;border-radius:50% 40% 60% 50%;z-index:1;animation:floatRotate 15s ease-in-out infinite}
@keyframes floatRotate {
0%,100%{transform:rotate(0deg) translateY(0)}
50%{transform:rotate(180deg) translateY(-30px)}
}
.storyGrid{background:#0f0f0f;padding:100px 40px}
.storyGridInner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
.storyContentArea h2{font-size:2.8rem;color:#EEF7E7;margin:0 0 32px;position:relative;display:inline-block}
.storyContentArea h2::after{content:'';position:absolute;bottom:-8px;left:0;width:60%;height:4px;background:linear-gradient(90deg,#E43576 0%,#3B8992 100%);box-shadow:0 0 20px #e4357699}
.storyContentArea p{font-size:1.05rem;line-height:1.8;color:#b8c5d3;margin:0 0 24px}
.storyImageBox{position:relative}
.storyImageBox img{width:100%;height:480px;object-fit:cover;border-radius:12px;box-shadow:0 15px 50px #00000080;border:1px solid #3b89924d}
.storyImageBox::before{content:'';position:absolute;top:-20px;left:-20px;width:150px;height:150px;border:2px solid #e4357666;border-radius:50%;z-index:-1}
.valuesList{background:linear-gradient(180deg,#0f0f0f 0%,#1a1a2e 100%);padding:100px 40px}
.valuesInner{max-width:1200px;margin:0 auto}
.valuesHeader{text-align:center;margin-bottom:70px}
.valuesHeader h2{font-size:2.6rem;color:#EEF7E7;margin:0 0 20px;position:relative;display:inline-block}
.valuesHeader h2::before{content:'';position:absolute;top:-15px;left:50%;transform:translateX(-50%);width:80px;height:3px;background:#3B8992;box-shadow:0 0 15px #3b8992b3}
.valuesHeader p{font-size:1.1rem;color:#aab8c8;margin:0}
.valuesCardsGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:40px}
.valueCardItem{background:#0f0f0fcc;border:1px solid #e435764d;border-radius:10px;padding:40px 30px;position:relative;transition:all 220ms cubic-bezier(0.4,0,0.2,1)}
.valueCardItem::before{content:'';position:absolute;top:0;left:0;width:100%;height:4px;background:linear-gradient(90deg,#E43576 0%,#3B8992 100%);opacity:0;transition:opacity 200ms ease}
.valueCardItem:hover{transform:translateY(-8px);border-color:#3b899299;box-shadow:0 20px 50px #e4357633}
.valueCardItem:hover::before{opacity:1}
.valueCardItem h3{font-size:1.5rem;color:#E43576;margin:0 0 18px}
.valueCardItem p{font-size:.98rem;line-height:1.7;color:#a5b3c3;margin:0}
.teamSplitBox{background:#0a0a0a;padding:100px 40px}
.teamSplitInner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:45% 55%;gap:60px;align-items:start}
.teamTextZone h2{font-size:2.7rem;color:#EEF7E7;margin:0 0 28px;line-height:1.2}
.teamTextZone h2 span{color:#3B8992;text-shadow:0 0 25px #3b899280}
.teamTextZone p{font-size:1.05rem;line-height:1.75;color:#b0bcc8;margin:0 0 22px}
.teamProfiles{display:flex;flex-direction:column;gap:35px}
.profileCard{background:#1a1a2e80;border:1px solid #3b899259;border-radius:8px;padding:30px;display:flex;gap:25px;align-items:center;transition:all 180ms ease}
.profileCard:hover{background:#1a1a2ecc;border-color:#e4357680;transform:translateX(10px)}
.profileCard img{width:100px;height:100px;object-fit:cover;border-radius:50%;border:3px solid #e4357666;box-shadow:0 8px 25px #0006}
.profileInfo h4{font-size:1.35rem;color:#EEF7E7;margin:0 0 8px}
.profileInfo .roleLabel{font-size:.95rem;color:#E43576;margin:0 0 12px;display:block;font-weight:600}
.profileInfo p{font-size:.95rem;line-height:1.6;color:#9eaab8;margin:0}
.ctaActionZone{background:linear-gradient(135deg,#16213e 0%,#0a0a0a 100%);padding:90px 40px;position:relative;overflow:hidden}
.ctaActionZone::before{content:'';position:absolute;top:-100px;right:-100px;width:400px;height:400px;background:radial-gradient(circle,#e4357633 0%,transparent 70%);animation:pulseGlow 6s ease-in-out infinite}
.ctaInnerWrap{max-width:1200px;margin:0 auto;text-align:center;position:relative;z-index:2}
.ctaInnerWrap h2{font-size:2.9rem;color:#EEF7E7;margin:0 0 24px;text-shadow:0 0 30px #3b899266}
.ctaInnerWrap p{font-size:1.15rem;line-height:1.7;color:#c0cdd8;margin:0 0 40px;max-width:700px;margin-left:auto;margin-right:auto}
.ctaButtonRow{display:flex;justify-content:center;gap:20px}
.btnPrimaryAction{background:linear-gradient(135deg,#E43576 0%,#b82a5e 100%);color:#EEF7E7;padding:16px 45px;border-radius:6px;font-size:1.05rem;font-weight:600;text-decoration:none;display:inline-block;border:2px solid transparent;box-shadow:0 10px 30px #e4357666;transition:all 200ms cubic-bezier(0.34,1.56,0.64,1);z-index:10;position:relative}
.btnPrimaryAction:hover{transform:translateY(-4px) scale(1.05);box-shadow:0 15px 40px #e4357699;background:linear-gradient(135deg,#ff4081 0%,#E43576 100%)}
.btnSecondaryAction{background:transparent;color:#3B8992;padding:16px 45px;border-radius:6px;font-size:1.05rem;font-weight:600;text-decoration:none;display:inline-block;border:2px solid #3B8992;box-shadow:0 0 20px #3b89924d;transition:all 180ms ease;z-index:10;position:relative}
.btnSecondaryAction:hover{background:#3b899226;border-color:#5fadb5;transform:translateY(-3px);box-shadow:0 10px 35px #3b899280}
@media (max-width: 1366px) {
.heroInnerWrapper{gap:40px}
.heroImageAccent{flex:0 0 340px}
.storyGridInner{gap:60px}
}
@media (max-width: 768px) {
.heroTitleBox{padding:80px 25px 70px}
.heroInnerWrapper{flex-direction:column;gap:40px}
.heroImageAccent{flex:0 0 auto;width:100%}
.heroImageAccent img{height:350px}
.heroTextContent h1{font-size:2.2rem}
.heroTextContent h1 .line1{font-size:2.2rem}
.heroTextContent h1 .line2{font-size:2.5rem}
.heroTextContent h1 .line3{font-size:2.8rem}
.storyGrid{padding:70px 25px}
.storyGridInner{grid-template-columns:1fr;gap:40px}
.storyImageBox img{height:350px}
.valuesList{padding:70px 25px}
.valuesCardsGrid{grid-template-columns:1fr;gap:30px}
.teamSplitBox{padding:70px 25px}
.teamSplitInner{grid-template-columns:1fr;gap:40px}
.ctaActionZone{padding:70px 25px}
.ctaInnerWrap h2{font-size:2.2rem}
.ctaButtonRow{flex-direction:column;align-items:center}
.btnPrimaryAction,.btnSecondaryAction{width:100%;max-width:320px}
}
@media (max-width: 375px) {
.heroTitleBox{padding:60px 20px 50px}
.heroTextContent h1{font-size:1.9rem}
.heroTextContent h1 .line1{font-size:1.9rem}
.heroTextContent h1 .line2{font-size:2.1rem}
.heroTextContent h1 .line3{font-size:2.4rem}
.storyGrid,.valuesList,.teamSplitBox,.ctaActionZone{padding:60px 20px}
.storyContentArea h2,.valuesHeader h2,.teamTextZone h2{font-size:2rem}
.ctaInnerWrap h2{font-size:1.9rem}
.profileCard{flex-direction:column;text-align:center}
}
.titleZone{position:relative;background:linear-gradient(135deg,#1a1a2e 0%,#16213e 100%);padding:80px 20px 120px;overflow:hidden}
.titleZone::before{content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;background:radial-gradient(circle,#e4357626 0%,transparent 70%);border-radius:50%;animation:float 8s ease-in-out infinite}
.titleZone::after{content:'';position:absolute;bottom:-30%;left:-10%;width:500px;height:500px;background:radial-gradient(circle,#3b89921f 0%,transparent 70%);border-radius:50%;animation:float 12s ease-in-out infinite reverse}
@keyframes float {
0%,100%{transform:translate(0,0)}
50%{transform:translate(30px,-30px)}
}
.titleZone .contentWrapper{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;position:relative;z-index:2}
.titleZone .textContent h1{font-size:52px;color:#EEF7E7;margin:0 0 24px;line-height:1.2;font-weight:700}
.titleZone .textContent h1::before{content:'';display:block;width:80px;height:4px;background:linear-gradient(90deg,#E43576,#3B8992);margin-bottom:20px}
.titleZone .textContent p{font-size:19px;color:#EEF7E7;line-height:1.7;margin:0 0 32px;opacity:.9}
.titleZone .imageBox-wrapper{position:relative;border-radius:12px;overflow:hidden;box-shadow:0 20px 60px #0006}
.titleZone .imageBox-wrapper img{width:100%;height:480px;object-fit:cover;display:block;transition:transform .6s cubic-bezier(0.4,0,0.2,1)}
.titleZone .imageBox-wrapper:hover img{transform:scale(1.05)}
.courseStructureArea{background:#0f0f1e;padding:100px 20px;position:relative}
.courseStructureArea::before{content:'';position:absolute;top:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,#e435764d,transparent)}
.courseStructureArea .innerContainer{max-width:1200px;margin:0 auto}
.courseStructureArea .sectionHead{text-align:center;margin-bottom:70px}
.courseStructureArea .sectionHead h2{font-size:42px;color:#EEF7E7;margin:0 0 18px;position:relative;display:inline-block}
.courseStructureArea .sectionHead h2::after{content:'';position:absolute;bottom:-10px;left:50%;transform:translateX(-50%);width:60px;height:3px;background:#E43576}
.courseStructureArea .sectionHead p{font-size:18px;color:#EEF7E7;opacity:.8;max-width:700px;margin:0 auto;line-height:1.6}
.moduleGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.moduleCard{background:linear-gradient(135deg,#1a1a2e 0%,#16213e 100%);border:1px solid #e4357633;border-radius:8px;padding:36px 28px;position:relative;transition:all .25s cubic-bezier(0.4,0,0.2,1);overflow:hidden}
.moduleCard::before{content:'';position:absolute;top:0;left:0;width:4px;height:0;background:linear-gradient(180deg,#E43576,#3B8992);transition:height .25s cubic-bezier(0.4,0,0.2,1)}
.moduleCard:hover{transform:translateY(-8px);border-color:#e4357680;box-shadow:0 12px 40px #e4357626}
.moduleCard:hover::before{height:100%}
.moduleCard .moduleNumber{font-size:14px;color:#3B8992;font-weight:600;margin:0 0 12px;letter-spacing:1px}
.moduleCard h3{font-size:24px;color:#EEF7E7;margin:0 0 16px;line-height:1.3}
.moduleCard .description{font-size:16px;color:#EEF7E7;opacity:.8;line-height:1.6;margin:0 0 20px}
.moduleCard .topicList{list-style:none;padding:0;margin:0}
.moduleCard .topicList li{font-size:15px;color:#EEF7E7;opacity:.7;padding:8px 0 8px 24px;position:relative;line-height:1.5}
.moduleCard .topicList li::before{content:'';position:absolute;left:0;top:50%;transform:translateY(-50%);width:6px;height:6px;background:#E43576;border-radius:50%}
.learningApproach{background:#16213e;padding:90px 20px}
.learningApproach .contentWrap{max-width:1200px;margin:0 auto;display:flex;gap:80px;align-items:stretch}
.learningApproach .leftSide{flex:1}
.learningApproach .leftSide h2{font-size:38px;color:#EEF7E7;margin:0 0 28px;line-height:1.3}
.learningApproach .leftSide .intro{font-size:17px;color:#EEF7E7;opacity:.85;line-height:1.7;margin:0 0 40px}
.learningApproach .featureBox--wrapper{display:flex;flex-direction:column;gap:24px}
.featureBox--item{background:#e4357614;border-left:3px solid #E43576;padding:24px;border-radius:6px;transition:all .2s ease}
.featureBox--item:hover{background:#e435761f;transform:translateX(8px)}
.featureBox--item h4{font-size:20px;color:#EEF7E7;margin:0 0 10px}
.featureBox--item p{font-size:16px;color:#EEF7E7;opacity:.8;margin:0;line-height:1.6}
.learningApproach .rightSide{flex:0 0 420px;display:flex;flex-direction:column;gap:28px}
.statsBox{background:linear-gradient(135deg,#1a1a2e 0%,#0f0f1e 100%);border:1px solid #3b89924d;border-radius:8px;padding:32px;position:relative;overflow:hidden}
.statsBox::before{content:'';position:absolute;top:-50%;right:-50%;width:200px;height:200px;background:radial-gradient(circle,#3b89921a 0%,transparent 70%);border-radius:50%}
.statsBox .statNumber{font-size:48px;color:#3B8992;font-weight:700;margin:0 0 8px;line-height:1}
.statsBox .statLabel{font-size:16px;color:#EEF7E7;opacity:.9;margin:0}
.statsBox .statDetail{font-size:14px;color:#EEF7E7;opacity:.7;margin:12px 0 0;line-height:1.5}
.instructorProfile{background:#0f0f1e;padding:100px 20px;position:relative}
.instructorProfile::after{content:'';position:absolute;bottom:0;left:0;right:0;height:1px;background:linear-gradient(90deg,transparent,#3b89924d,transparent)}
.instructorProfile .layoutBox{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:280px 1fr 280px;gap:50px;align-items:start}
.instructorProfile .portraitBox img{width:100%;height:320px;object-fit:cover;border-radius:8px;border:2px solid #e435764d;box-shadow:0 12px 40px #0000004d}
.instructorProfile .centralText{padding-top:20px}
.instructorProfile .centralText h2{font-size:36px;color:#EEF7E7;margin:0 0 16px}
.instructorProfile .centralText .role{font-size:18px;color:#3B8992;margin:0 0 24px;font-weight:600}
.instructorProfile .centralText .bio{font-size:17px;color:#EEF7E7;opacity:.85;line-height:1.7;margin:0 0 20px}
.instructorProfile .centralText .expertise{font-size:16px;color:#EEF7E7;opacity:.8;line-height:1.6;margin:0}
.instructorProfile .secondPortrait img{width:100%;height:320px;object-fit:cover;border-radius:8px;border:2px solid #3b89924d;box-shadow:0 12px 40px #0000004d}
.enrollmentSection{background:linear-gradient(135deg,#1a1a2e 0%,#16213e 100%);padding:90px 20px;position:relative;overflow:hidden}
.enrollmentSection::before{content:'';position:absolute;top:-100px;left:-100px;width:400px;height:400px;background:radial-gradient(circle,#e435761f 0%,transparent 70%);border-radius:50%}
.enrollmentSection::after{content:'';position:absolute;bottom:-150px;right:-150px;width:500px;height:500px;background:radial-gradient(circle,#3b89921a 0%,transparent 70%);border-radius:50%}
.enrollmentSection .enrollmentWrap{max-width:900px;margin:0 auto;text-align:center;position:relative;z-index:2}
.enrollmentSection h2{font-size:44px;color:#EEF7E7;margin:0 0 24px;line-height:1.2}
.enrollmentSection .leadText{font-size:19px;color:#EEF7E7;opacity:.9;line-height:1.7;margin:0 0 40px;max-width:700px;margin-left:auto;margin-right:auto}
.enrollmentSection .detailsGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;margin-bottom:50px}
.enrollmentSection .detailCard{background:#3b899214;border:1px solid #3b899233;border-radius:8px;padding:28px 20px;transition:all .2s ease}
.enrollmentSection .detailCard:hover{border-color:#3b899266;background:#3b89921f}
.enrollmentSection .detailCard .iconBox{width:50px;height:50px;margin:0 auto 16px;display:flex;align-items:center;justify-content:center;background:#e4357626;border-radius:50%}
.enrollmentSection .detailCard .iconBox svg{width:24px;height:24px;fill:#E43576}
.enrollmentSection .detailCard h4{font-size:18px;color:#EEF7E7;margin:0 0 8px}
.enrollmentSection .detailCard p{font-size:15px;color:#EEF7E7;opacity:.8;margin:0;line-height:1.5}
.enrollmentSection .ctaButton{display:inline-block;background:linear-gradient(135deg,#E43576,#c42a62);color:#EEF7E7;font-size:18px;font-weight:600;padding:18px 48px;border-radius:6px;text-decoration:none;transition:all .2s cubic-bezier(0.4,0,0.2,1);box-shadow:0 8px 24px #e435764d;position:relative;z-index:10}
.enrollmentSection .ctaButton:hover{transform:translateY(-3px);box-shadow:0 12px 32px #e4357666;background:linear-gradient(135deg,#c42a62,#E43576)}
@media (max-width: 1366px) {
.titleZone{padding:60px 20px 100px}
.titleZone .contentWrapper{gap:40px}
.titleZone .textContent h1{font-size:44px}
.moduleGrid{gap:24px}
.learningApproach .contentWrap{gap:60px}
}
@media (max-width: 768px) {
.titleZone{padding:50px 20px 70px}
.titleZone .contentWrapper{grid-template-columns:1fr;gap:40px}
.titleZone .textContent h1{font-size:36px}
.titleZone .textContent p{font-size:17px}
.titleZone .imageBox-wrapper img{height:320px}
.courseStructureArea{padding:70px 20px}
.courseStructureArea .sectionHead h2{font-size:32px}
.moduleGrid{grid-template-columns:1fr;gap:20px}
.learningApproach{padding:70px 20px}
.learningApproach .contentWrap{flex-direction:column;gap:40px}
.learningApproach .leftSide h2{font-size:32px}
.learningApproach .rightSide{flex:1;width:100%}
.instructorProfile{padding:70px 20px}
.instructorProfile .layoutBox{grid-template-columns:1fr;gap:30px}
.instructorProfile .portraitBox img,.instructorProfile .secondPortrait img{height:280px}
.enrollmentSection{padding:70px 20px}
.enrollmentSection h2{font-size:32px}
.enrollmentSection .detailsGrid{grid-template-columns:1fr;gap:20px}
}
@media (max-width: 375px) {
.titleZone .textContent h1{font-size:28px}
.titleZone .textContent p{font-size:16px}
.courseStructureArea .sectionHead h2{font-size:28px}
.moduleCard{padding:28px 20px}
.learningApproach .leftSide h2{font-size:28px}
.enrollmentSection h2{font-size:28px}
.enrollmentSection .ctaButton{padding:16px 36px;font-size:16px}
}
.successContainer{min-height:85vh;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#1a1a2e 0%,#0f0f1e 100%);padding:60px 20px;position:relative;overflow:hidden}
.successContainer::before{content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;background:radial-gradient(circle,#e4357626 0%,transparent 70%);border-radius:50%;animation:pulseGlow 4s ease-in-out infinite}
.successContainer::after{content:'';position:absolute;bottom:-30%;left:-15%;width:500px;height:500px;background:radial-gradient(circle,#3b89921f 0%,transparent 70%);border-radius:50%;animation:pulseGlow 5s ease-in-out infinite;animation-delay:1s}
@keyframes pulseGlow {
0%,100%{transform:scale(1);opacity:.6}
50%{transform:scale(1.1);opacity:.8}
}
.successContentWrapper{max-width:1200px;width:100%;margin:0 auto;position:relative;z-index:2}
.successMainBox{background:#141423d9;border:1px solid #e435764d;border-radius:8px;padding:80px 60px;text-align:center;position:relative;backdrop-filter:blur(10px);box-shadow:0 8px 32px #0006 0 0 60px #e4357633}
.successMainBox::before{content:'';position:absolute;top:0;left:50%;transform:translateX(-50%);width:80%;height:2px;background:linear-gradient(90deg,transparent 0%,#E43576 50%,transparent 100%)}
.iconCircleSuccess{width:120px;height:120px;margin:0 auto 40px;background:linear-gradient(135deg,#e4357633 0%,#3b899233 100%);border:3px solid #E43576;border-radius:50%;display:flex;align-items:center;justify-content:center;position:relative;animation:rotateCircle 3s linear infinite}
@keyframes rotateCircle {
0%{transform:rotate(0deg)}
100%{transform:rotate(360deg)}
}
.iconCircleSuccess::before{content:'';position:absolute;width:100%;height:100%;border:2px solid #3b899280;border-radius:50%;animation:rotateCircle 2s linear infinite reverse}
.checkmarkIcon{width:60px;height:60px;fill:none;stroke:#EEF7E7;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:100;stroke-dashoffset:100;animation:drawCheck 1s ease-out forwards;animation-delay:.5s}
@keyframes drawCheck {
to{stroke-dashoffset:0}
}
.successHeadlineText{font-size:42px;font-weight:700;color:#EEF7E7;margin:0 0 24px;line-height:1.2;text-shadow:0 2px 20px #e4357666}
.successHeadlineText span{color:#E43576;display:inline-block;position:relative}
.successHeadlineText span::after{content:'';position:absolute;bottom:-8px;left:0;width:100%;height:3px;background:linear-gradient(90deg,#E43576 0%,#3B8992 100%);border-radius:2px}
.successSubtextArea{font-size:18px;color:#eef7e7d9;line-height:1.7;margin:0 0 50px;max-width:700px;margin-left:auto;margin-right:auto}
.confirmationDetailsBox{background:#3b89921a;border:1px solid #3b89924d;border-radius:6px;padding:35px 40px;margin:50px 0;text-align:left;max-width:650px;margin-left:auto;margin-right:auto}
.detailRowItem{display:flex;justify-content:space-between;align-items:center;padding:18px 0;border-bottom:1px solid #eef7e71a}
.detailRowItem:last-child{border-bottom:none}
.detailLabelText{font-size:15px;color:#eef7e7b3;font-weight:500}
.detailValueText{font-size:16px;color:#EEF7E7;font-weight:600}
.buttonGroupSuccess{display:flex;gap:20px;justify-content:center;flex-wrap:wrap}
.primaryBtnSuccess{background:linear-gradient(135deg,#E43576 0%,#c42960 100%);color:#EEF7E7;padding:18px 48px;border:none;border-radius:6px;font-size:16px;font-weight:600;cursor:pointer;text-decoration:none;display:inline-block;position:relative;overflow:hidden;transition:all 200ms cubic-bezier(0.4,0,0.2,1);box-shadow:0 4px 16px #e4357666;z-index:1}
.primaryBtnSuccess::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,#fff3,transparent);transition:left 250ms ease}
.primaryBtnSuccess:hover::before{left:100%}
.primaryBtnSuccess:hover{transform:translateY(-2px);box-shadow:0 6px 24px #e4357699}
.secondaryBtnSuccess{background:transparent;color:#3B8992;padding:18px 48px;border:2px solid #3B8992;border-radius:6px;font-size:16px;font-weight:600;cursor:pointer;text-decoration:none;display:inline-block;transition:all 180ms ease;position:relative;z-index:1}
.secondaryBtnSuccess:hover{background:#3b899226;border-color:#4a9ca6;color:#4a9ca6;transform:translateY(-2px);box-shadow:0 4px 16px #3b89924d}
.decorativeLinesSuccess{position:absolute;width:100%;height:100%;top:0;left:0;pointer-events:none;opacity:.3}
.decorativeLinesSuccess::before,.decorativeLinesSuccess::after{content:'';position:absolute;background:linear-gradient(90deg,transparent,#3B8992,transparent);height:1px}
.decorativeLinesSuccess::before{top:30%;left:-50%;width:200%;transform:rotate(-15deg)}
.decorativeLinesSuccess::after{bottom:30%;left:-50%;width:200%;transform:rotate(15deg)}
.nextStepsSection{margin-top:60px;padding-top:50px;border-top:1px solid #eef7e726}
.nextStepsHeading{font-size:24px;color:#EEF7E7;margin:0 0 35px;font-weight:600}
.stepsGridBox{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:25px;max-width:900px;margin:0 auto}
.stepCardItem{background:#14142399;border:1px solid #3b89924d;border-radius:6px;padding:30px 25px;text-align:left;transition:all 200ms ease;position:relative}
.stepCardItem:hover{transform:translateY(-4px);border-color:#e4357680;box-shadow:0 8px 24px #0000004d}
.stepNumberBadge{width:40px;height:40px;background:linear-gradient(135deg,#E43576,#3B8992);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;color:#EEF7E7;margin-bottom:20px}
.stepTitleText{font-size:18px;color:#EEF7E7;font-weight:600;margin:0 0 12px}
.stepDescText{font-size:15px;color:#eef7e7bf;line-height:1.6;margin:0}
@media (max-width: 768px) {
.successContainer{padding:40px 15px;min-height:70vh}
.successMainBox{padding:50px 30px}
.successHeadlineText{font-size:32px}
.successSubtextArea{font-size:16px}
.confirmationDetailsBox{padding:25px 20px}
.buttonGroupSuccess{flex-direction:column;gap:15px}
.primaryBtnSuccess,.secondaryBtnSuccess{width:100%;padding:16px 32px}
.stepsGridBox{grid-template-columns:1fr}
.iconCircleSuccess{width:100px;height:100px}
.checkmarkIcon{width:50px;height:50px}
}
@media (max-width: 375px) {
.successHeadlineText{font-size:28px}
.successMainBox{padding:40px 20px}
.detailRowItem{flex-direction:column;align-items:flex-start;gap:8px}
}