/* Custom CSS Variables */
:root {
    --oceanBlue: #588157;
    --mintCream: #eef3ef;
    --forestShade: #3e5a3d;
    --secondaryTone: #7ba05b;
    --secondaryGlow: #d4e7d1;
    --tertiaryWarm: #d4a574;
    --tertiaryPale: #f5e8d3;
    --accentVibrant: #c47335;
    --accentSoft: #f2dcc9;
    --neutralGray: #8a9ba8;
    --neutralMist: #f7f9fa;
    --infoBlue: #4a90a4;
    --warningAmber: #d4a574;
    --successGreen: #6b8e23;
}

/* Base Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    line-height: 1.7;
    color: var(--forestShade);
    background-color: var(--mintCream);
    overflow-x: hidden;
}

/* Container and Layout */
.containerFluid {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 27px;
}

/* Navigation Styles */
.navigationWrapper {
    background: rgba(238, 243, 239, 0.95);
    backdrop-filter: blur(13px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(94, 129, 87, 0.1);
}

.primaryNavigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 0;
    position: relative;
}

.brandIdentity {
    text-decoration: none;
    z-index: 1002;
}

.brandLogo {
    height: 47px;
    width: auto;
    transition: transform 0.3s ease;
}

.brandLogo:hover {
    transform: scale(1.08);
}

.hiddenToggle {
    display: none;
}

.mobileMenuTrigger {
    display: none;
    cursor: pointer;
    z-index: 1002;
    padding: 13px;
}

.hamburgerIcon {
    width: 34px;
    height: 3px;
    background: var(--forestShade);
    position: relative;
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburgerIcon:before,
.hamburgerIcon:after {
    content: '';
    position: absolute;
    width: 34px;
    height: 3px;
    background: var(--forestShade);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburgerIcon:before {
    top: -11px;
}

.hamburgerIcon:after {
    top: 11px;
}

.navigationMenu {
    display: flex;
    align-items: center;
}

.menuItemsList {
    display: flex;
    list-style: none;
    gap: 37px;
    align-items: center;
}

.navigationLink {
    color: var(--forestShade);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navigationLink:hover {
    color: var(--oceanBlue);
    background: rgba(88, 129, 87, 0.08);
    transform: translateY(-1px);
}

/* Hero Section */
.heroZone {
    padding: 134px 0 89px;
    background: linear-gradient(137deg, var(--mintCream) 0%, rgba(238, 243, 239, 0.7) 100%);
    position: relative;
    overflow: hidden;
}

.heroZone::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(88, 129, 87, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.heroContent {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 67px;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
}

.textualPresentation {
    z-index: 2;
}

.primaryHeading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--forestShade);
    margin-bottom: 29px;
    position: relative;
}

.heroDescription {
    font-size: 1.23rem;
    color: var(--neutralGray);
    margin-bottom: 43px;
    line-height: 1.8;
}

.benefitsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 31px;
    margin-bottom: 52px;
}

.benefitItem {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 26px;
    border-radius: 17px;
    border: 1px solid rgba(88, 129, 87, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 19px rgba(88, 129, 87, 0.06);
}

.benefitItem:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 29px rgba(88, 129, 87, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.benefitTitle {
    font-size: 1.21rem;
    font-weight: 600;
    color: var(--oceanBlue);
    margin-bottom: 11px;
}

.benefitText {
    font-size: 0.97rem;
    color: var(--neutralGray);
    line-height: 1.6;
}

.actionArea {
    text-align: left;
}

.primaryButton {
    display: inline-block;
    background: linear-gradient(135deg, var(--oceanBlue) 0%, var(--secondaryTone) 100%);
    color: white;
    padding: 18px 42px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 1.14rem;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 23px rgba(88, 129, 87, 0.25);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.primaryButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 34px rgba(88, 129, 87, 0.35);
}

.primaryButton::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;
}

.primaryButton:hover::before {
    left: 100%;
}

.disclaimerText {
    margin-top: 16px;
    font-size: 0.89rem;
    color: var(--neutralGray);
    font-style: italic;
}

.visualPresentation {
    position: relative;
    z-index: 1;
}

.heroImage {
    width: 400%;
    border-radius: 23px;
    box-shadow: 0 13px 47px rgba(88, 129, 87, 0.15);
    transition: transform 0.4s ease;
}

.heroImage:hover {
    transform: scale(1.02);
}

.floatingElements {
    position: absolute;
    margin: 5% 15%;
    top: 29px;
    right: -23px;
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.floatingElements:hover
{
    transform: scale(1.02);
}

.statsCard {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(11px);
    padding: 19px 24px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 7px 26px rgba(88, 129, 87, 0.12);
    border: 1px solid rgba(88, 129, 87, 0.08);
    min-width: 110px;
}

.statsNumber {
    display: block;
    font-size: 1.67rem;
    font-weight: 700;
    color: var(--oceanBlue);
    line-height: 1;
}

.statsLabel {
    display: block;
    font-size: 0.83rem;
    color: var(--neutralGray);
    margin-top: 4px;
}

/* Footer Styles */
.footerZone {
    background: var(--forestShade);
    color: var(--mintCream);
    padding: 67px 0 24px;
    position: relative;
}

.footerZone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--oceanBlue), var(--secondaryTone), var(--oceanBlue));
}

.footerContent {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 73px;
    margin-bottom: 47px;
}

.companyInfo {
    max-width: 380px;
}

.footerLogo {
    height: 54px;
    width: auto;
    margin-bottom: 26px;
    filter: brightness(0) invert(1);
}

.companyDescription {
    font-size: 1.04rem;
    line-height: 1.7;
    color: rgba(238, 243, 239, 0.8);
}

.footerLinks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 43px;
}

.groupTitle {
    font-size: 1.17rem;
    font-weight: 600;
    color: var(--mintCream);
    margin-bottom: 21px;
    position: relative;
}

.groupTitle::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 34px;
    height: 2px;
    background: var(--oceanBlue);
}

.linksList {
    list-style: none;
}

.linksList li {
    margin-bottom: 13px;
}

.footerLink {
    color: rgba(238, 243, 239, 0.7);
    text-decoration: none;
    font-size: 0.96rem;
    transition: all 0.3s ease;
    position: relative;
}

.footerLink:hover {
    color: var(--mintCream);
    padding-left: 8px;
}

.contactDetails p {
    margin-bottom: 8px;
    font-size: 0.96rem;
    color: rgba(238, 243, 239, 0.7);
}

.phoneNumber {
    font-weight: 600;
    color: var(--mintCream) !important;
}

.footerBottom {
    border-top: 1px solid rgba(238, 243, 239, 0.2);
    padding-top: 31px;
    text-align: center;
}

.copyrightText {
    font-size: 0.91rem;
    color: rgba(238, 243, 239, 0.6);
}

/* Mobile Navigation */
@media screen and (max-width: 890px) {
    .mobileMenuTrigger {
        display: block;
    }

    .navigationMenu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(238, 243, 239, 0.98);
        backdrop-filter: blur(17px);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding-top: 97px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .menuItemsList {
        flex-direction: column;
        gap: 23px;
        width: 100%;
        text-align: center;
    }

    .menuElement {
        width: 100%;
    }

    .navigationLink {
        display: block;
        padding: 17px 34px;
        font-size: 1.21rem;
        border-radius: 11px;
        margin: 0 27px;
    }

    .hiddenToggle:checked ~ .navigationMenu {
        left: 0;
    }

    .hiddenToggle:checked ~ .mobileMenuTrigger .hamburgerIcon {
        background: transparent;
    }

    .hiddenToggle:checked ~ .mobileMenuTrigger .hamburgerIcon:before {
        transform: rotate(45deg);
        top: 0;
    }

    .hiddenToggle:checked ~ .mobileMenuTrigger .hamburgerIcon:after {
        transform: rotate(-45deg);
        top: 0;
    }
}

/* Tablet and Mobile Responsive */
@media screen and (max-width: 1024px) {
    .heroContent {
        grid-template-columns: 1fr;
        gap: 47px;
        text-align: center;
    }

    .primaryHeading {
        font-size: 2.8rem;
    }

    .floatingElements {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 27px;
    }
}

@media screen and (max-width: 768px) {
    .containerFluid {
        padding: 0 19px;
    }

    .heroZone {
        padding: 109px 0 67px;
    }

    .primaryHeading {
        font-size: 2.3rem;
        margin-bottom: 23px;
    }

    .heroDescription {
        font-size: 1.11rem;
        margin-bottom: 34px;
    }

    .benefitsGrid {
        grid-template-columns: 1fr;
        gap: 21px;
        margin-bottom: 39px;
    }

    .benefitItem {
        padding: 21px;
    }

    .primaryButton {
        padding: 16px 34px;
        font-size: 1.07rem;
    }

    .footerContent {
        grid-template-columns: 1fr;
        gap: 43px;
    }

    .footerLinks {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media screen and (max-width: 480px) {
    .primaryHeading {
        font-size: 1.97rem;
    }

    .heroDescription {
        font-size: 1.04rem;
    }

    .benefitItem {
        padding: 18px;
    }

    .benefitTitle {
        font-size: 1.13rem;
    }

    .benefitText {
        font-size: 0.93rem;
    }

    .statsCard {
        padding: 16px 19px;
        min-width: 94px;
    }

    .statsNumber {
        font-size: 1.47rem;
    }

    .statsLabel {
        font-size: 0.79rem;
    }
}

/* Quiz Specific Styles */
.quizMainSection {
    padding: 134px 0 67px;
    background: linear-gradient(147deg, var(--mintCream) 0%, rgba(238, 243, 239, 0.6) 100%);
    min-height: 100vh;
}

.quizHeaderArea {
    text-align: center;
    margin-bottom: 57px;
}

.quizMainTitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    color: var(--forestShade);
    margin-bottom: 19px;
    font-weight: 700;
}

.quizSubtitle {
    font-size: 1.17rem;
    color: var(--neutralGray);
    max-width: 640px;
    margin: 0 auto 43px;
    line-height: 1.6;
}

.progressContainer {
    max-width: 520px;
    margin: 0 auto;
}

.progressTracker {
    width: 100%;
    height: 8px;
    background: rgba(88, 129, 87, 0.15);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 13px;
}

.progressIndicator {
    height: 100%;
    background: linear-gradient(90deg, var(--oceanBlue), var(--secondaryTone));
    border-radius: 12px;
    width: 20%;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progressText {
    font-size: 0.94rem;
    color: var(--neutralGray);
    font-weight: 500;
}

.quizFormWrapper {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    min-height: 420px;
}

.questionPanel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.questionPanel.activeQuestion {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.questionContent {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(11px);
    border-radius: 19px;
    padding: 41px;
    border: 1px solid rgba(88, 129, 87, 0.12);
    box-shadow: 0 7px 29px rgba(88, 129, 87, 0.08);
}

.questionTitle {
    font-size: 1.43rem;
    color: var(--forestShade);
    margin-bottom: 31px;
    font-weight: 600;
    text-align: center;
}

.answerOptionsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 17px;
}

.answerChoice {
    display: block;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(88, 129, 87, 0.15);
    border-radius: 13px;
    padding: 23px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.answerChoice:hover {
    border-color: var(--oceanBlue);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 21px rgba(88, 129, 87, 0.12);
}

.answerChoice.selectedChoice {
    border-color: var(--oceanBlue);
    background: rgba(88, 129, 87, 0.08);
    box-shadow: 0 4px 17px rgba(88, 129, 87, 0.15);
}

.answerChoice input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.optionLabel {
    display: block;
    font-size: 1.11rem;
    font-weight: 600;
    color: var(--forestShade);
    margin-bottom: 7px;
}

.optionDescription {
    display: block;
    font-size: 0.91rem;
    color: var(--neutralGray);
}

.quizNavigationArea {
    max-width: 780px;
    margin: 47px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 23px;
}

.navigationButton {
    padding: 16px 34px;
    border: none;
    border-radius: 11px;
    font-size: 1.07rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.backButton {
    background: rgba(138, 155, 168, 0.15);
    color: var(--neutralGray);
}

.backButton:hover:not(:disabled) {
    background: rgba(138, 155, 168, 0.25);
    transform: translateX(-2px);
}

.backButton:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nextButton {
    background: linear-gradient(135deg, var(--oceanBlue), var(--secondaryTone));
    color: white;
    box-shadow: 0 4px 17px rgba(88, 129, 87, 0.25);
}

.nextButton:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 7px 24px rgba(88, 129, 87, 0.35);
}

.nextButton:disabled {
    background: rgba(138, 155, 168, 0.4);
    cursor: not-allowed;
    box-shadow: none;
}

/* Success Popup Styles */
.successPopupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(62, 90, 61, 0.85);
    backdrop-filter: blur(13px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.successPopupContent {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(17px);
    border-radius: 23px;
    padding: 47px;
    text-align: center;
    max-width: 480px;
    width: 90%;
    border: 1px solid rgba(88, 129, 87, 0.15);
    box-shadow: 0 13px 47px rgba(88, 129, 87, 0.25);
    position: relative;
    overflow: hidden;
}

.checkmarkAnimation {
    margin-bottom: 31px;
}

.checkmarkCircle {
    width: 73px;
    height: 73px;
    border: 3px solid var(--oceanBlue);
    border-radius: 50%;
    margin: 0 auto 27px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmarkCircle.animate {
    animation: circleGrow 0.6s ease-in-out;
}

.checkmarkStem, .checkmarkKick {
    position: absolute;
    background: var(--oceanBlue);
    border-radius: 2px;
}

.checkmarkStem {
    width: 3px;
    height: 17px;
    transform: rotate(45deg);
    left: 22px;
    top: 21px;
}

.checkmarkKick {
    width: 3px;
    height: 11px;
    transform: rotate(-45deg);
    left: 15px;
    top: 26px;
}

.checkmarkCircle.animate .checkmarkStem {
    animation: stemGrow 0.4s ease-in-out 0.3s both;
}

.checkmarkCircle.animate .checkmarkKick {
    animation: kickGrow 0.3s ease-in-out 0.5s both;
}

.popupTitle {
    font-size: 1.87rem;
    color: var(--forestShade);
    margin-bottom: 17px;
    font-weight: 700;
}

.popupMessage {
    font-size: 1.13rem;
    color: var(--neutralGray);
    margin-bottom: 11px;
}

.popupDescription {
    font-size: 0.97rem;
    color: var(--neutralGray);
    margin-bottom: 34px;
    line-height: 1.6;
}

.continueButton {
    background: linear-gradient(135deg, var(--oceanBlue), var(--secondaryTone));
    color: white;
    padding: 17px 39px;
    border: none;
    border-radius: 11px;
    font-size: 1.11rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 23px rgba(88, 129, 87, 0.25);
}

.continueButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 34px rgba(88, 129, 87, 0.35);
}

/* Animations */
@keyframes circleGrow {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes stemGrow {
    0% { height: 0; }
    100% { height: 17px; }
}

@keyframes kickGrow {
    0% { height: 0; }
    100% { height: 11px; }
}

.floatingParticle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--oceanBlue);
    border-radius: 50%;
    animation: floatUp 4s ease-out forwards;
    opacity: 0.7;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .quizMainSection {
        padding: 109px 0 47px;
    }

    .quizMainTitle {
        font-size: 2.3rem;
    }

    .quizSubtitle {
        font-size: 1.07rem;
    }

    .questionContent {
        padding: 27px;
    }

    .questionTitle {
        font-size: 1.27rem;
    }

    .answerOptionsGrid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .answerChoice {
        padding: 19px;
    }

    .quizNavigationArea {
        flex-direction: column;
        gap: 17px;
    }

    .navigationButton {
        width: 100%;
    }

    .contactFormCompact {
        padding: 27px;
    }

    .checkmarkCircle {
        width: 61px;
        height: 61px;
    }

    .popupTitle {
        font-size: 1.63rem;
    }

    .popupMessage {
        font-size: 1.04rem;
    }

    .continueButton {
        padding: 15px 31px;
        font-size: 1.04rem;
    }
}

/* Results Page Specific Styles */

.resultsHeaderSection {
    padding: 134px 0 67px;
    background: linear-gradient(147deg, var(--mintCream) 0%, rgba(238, 243, 239, 0.6) 100%);
    text-align: center;
}

.resultsMainTitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.9rem;
    color: var(--forestShade);
    margin-bottom: 21px;
    font-weight: 700;
}

.resultsSubtitle {
    font-size: 1.19rem;
    color: var(--neutralGray);
    margin-bottom: 34px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.benefitsHighlight {
    display: flex;
    justify-content: center;
    gap: 17px;
    flex-wrap: wrap;
}

.benefitTag {
    background: rgba(88, 129, 87, 0.1);
    color: var(--oceanBlue);
    padding: 9px 19px;
    border-radius: 23px;
    font-size: 0.91rem;
    font-weight: 600;
    border: 1px solid rgba(88, 129, 87, 0.2);
}

/* Courses Section */
.coursesDisplaySection {
    padding: 73px 0;
    background: var(--neutralMist);
}

.coursesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 31px;
    margin-bottom: 57px;
}

.courseCard {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 17px;
    overflow: hidden;
    border: 1px solid rgba(88, 129, 87, 0.12);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 23px rgba(88, 129, 87, 0.08);
    cursor: pointer;
}

.courseCard:hover {
    box-shadow: 0 11px 37px rgba(88, 129, 87, 0.15);
}

.courseCard.featured {
    border: 2px solid var(--oceanBlue);
    position: relative;
}

.courseImageArea {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.courseImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.courseCard:hover .courseImage {
    transform: scale(1.05);
}

.courseBadge {
    position: absolute;
    top: 13px;
    right: 13px;
    background: var(--oceanBlue);
    color: white;
    padding: 6px 14px;
    border-radius: 19px;
    font-size: 0.83rem;
    font-weight: 600;
}

.courseDetails {
    padding: 27px;
}

.courseTitle {
    font-size: 1.27rem;
    color: var(--forestShade);
    margin-bottom: 14px;
    font-weight: 600;
}

.courseDescription {
    font-size: 0.97rem;
    color: var(--neutralGray);
    line-height: 1.6;
    margin-bottom: 21px;
}

.courseFeatures {
    display: flex;
    gap: 13px;
    margin-bottom: 19px;
    flex-wrap: wrap;
}

.featureItem {
    background: rgba(88, 129, 87, 0.08);
    color: var(--oceanBlue);
    padding: 5px 11px;
    border-radius: 8px;
    font-size: 0.83rem;
    font-weight: 500;
}

.coursePricing {
    display: flex;
    align-items: center;
    gap: 11px;
}

.originalPrice {
    color: var(--neutralGray);
    text-decoration: line-through;
    font-size: 0.94rem;
}

.discountPrice {
    color: var(--oceanBlue);
    font-size: 1.31rem;
    font-weight: 700;
}

/* Bundle Offer */
.bundleOfferSection {
    margin-top: 47px;
}

.bundleCard {
    background: linear-gradient(135deg, var(--oceanBlue) 0%, var(--secondaryTone) 100%);
    border-radius: 19px;
    color: white;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bundleCard:hover {
    transform: translateY(-3px);
}

.bundleHeader {
    padding: 31px 31px 19px;
    position: relative;
}

.bundleTitle {
    font-size: 1.47rem;
    font-weight: 700;
    margin-bottom: 7px;
}

.bundleBadge {
    position: absolute;
    top: 19px;
    right: 19px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--oceanBlue);
    padding: 7px 16px;
    border-radius: 17px;
    font-size: 0.87rem;
    font-weight: 600;
}

.bundleContent {
    padding: 0 31px 31px;
}

.bundleDescription {
    font-size: 1.04rem;
    margin-bottom: 23px;
    opacity: 0.9;
}

.bundleFeatures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 11px;
    margin-bottom: 27px;
}

.bundleFeature {
    font-size: 0.94rem;
    position: relative;
    padding-left: 19px;
}

.bundleFeature:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
}

.bundlePricing {
    text-align: center;
}

.bundleOriginal {
    display: block;
    font-size: 0.97rem;
    opacity: 0.7;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.bundleDiscount {
    font-size: 1.67rem;
    font-weight: 700;
}

/* Contact Form Section */
.contactFormSection {
    padding: 89px 0;
    background: var(--mintCream);
}

.formContainer {
    max-width: 720px;
    margin: 0 auto;
}

.formHeaderArea {
    text-align: center;
    margin-bottom: 47px;
}

.formMainTitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.3rem;
    color: var(--forestShade);
    margin-bottom: 17px;
    font-weight: 700;
}

.formSubtitle {
    font-size: 1.11rem;
    color: var(--neutralGray);
    line-height: 1.6;
}

.mainContactForm {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(11px);
    border-radius: 19px;
    padding: 43px;
    border: 1px solid rgba(88, 129, 87, 0.12);
    box-shadow: 0 7px 29px rgba(88, 129, 87, 0.08);
}

.formGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
    margin-bottom: 31px;
}

.inputFieldGroup {
    display: flex;
    flex-direction: column;
}

.inputFieldGroup.fullWidth {
    grid-column: 1 / -1;
}

.inputLabel {
    font-size: 0.94rem;
    color: var(--forestShade);
    margin-bottom: 7px;
    font-weight: 600;
}

.formInput, .formSelect {
    padding: 16px;
    border: 2px solid rgba(88, 129, 87, 0.15);
    border-radius: 9px;
    font-size: 1.04rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    font-family: inherit;
}

.formInput:focus, .formSelect:focus {
    outline: none;
    border-color: var(--oceanBlue);
    box-shadow: 0 0 0 3px rgba(88, 129, 87, 0.1);
}

.submitArea {
    text-align: center;
}

.submitFormButton {
    background: linear-gradient(135deg, var(--oceanBlue), var(--secondaryTone));
    color: white;
    padding: 18px 47px;
    border: none;
    border-radius: 11px;
    font-size: 1.13rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 23px rgba(88, 129, 87, 0.25);
    margin-bottom: 17px;
}

.submitFormButton:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 9px 34px rgba(88, 129, 87, 0.35);
}

.submitFormButton:disabled {
    background: var(--neutralGray);
    cursor: not-allowed;
    transform: none;
}

.privacyNote {
    font-size: 0.87rem;
    color: var(--neutralGray);
}

.privacyLink {
    color: var(--oceanBlue);
    text-decoration: none;
}

.privacyLink:hover {
    text-decoration: underline;
}

/* Thank You Popup */
.thankYouPopupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(62, 90, 61, 0.85);
    backdrop-filter: blur(13px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.thankYouPopupContent {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(17px);
    border-radius: 23px;
    padding: 47px;
    text-align: center;
    max-width: 480px;
    width: 90%;
    border: 1px solid rgba(88, 129, 87, 0.15);
    box-shadow: 0 13px 47px rgba(88, 129, 87, 0.25);
}

.successIconArea {
    margin-bottom: 27px;
}

.successIcon {
    width: 67px;
    height: 67px;
    background: var(--oceanBlue);
    border-radius: 50%;
    color: white;
    font-size: 2.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transform: scale(0);
}

.thankYouTitle {
    font-size: 1.87rem;
    color: var(--forestShade);
    margin-bottom: 17px;
    font-weight: 700;
}

.thankYouMessage {
    font-size: 1.13rem;
    color: var(--neutralGray);
    margin-bottom: 13px;
}

.thankYouDescription {
    font-size: 0.97rem;
    color: var(--neutralGray);
    margin-bottom: 31px;
    line-height: 1.6;
}

.closePopupButton {
    background: linear-gradient(135deg, var(--oceanBlue), var(--secondaryTone));
    color: white;
    padding: 15px 31px;
    border: none;
    border-radius: 9px;
    font-size: 1.04rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.closePopupButton:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 19px rgba(88, 129, 87, 0.25);
}

/* Animation Classes */
.courseCard {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.courseCard.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .resultsHeaderSection {
        padding: 109px 0 47px;
    }

    .resultsMainTitle {
        font-size: 2.3rem;
    }

    .resultsSubtitle {
        font-size: 1.07rem;
    }

    .benefitsHighlight {
        gap: 11px;
    }

    .coursesGrid {
        grid-template-columns: 1fr;
        gap: 23px;
    }

    .bundleHeader {
        padding: 23px 23px 15px;
    }

    .bundleContent {
        padding: 0 23px 23px;
    }

    .bundleFeatures {
        grid-template-columns: 1fr;
    }

    .formGrid {
        grid-template-columns: 1fr;
        gap: 19px;
    }

    .mainContactForm {
        padding: 31px;
    }

    .formMainTitle {
        font-size: 1.97rem;
    }

    .submitFormButton {
        width: 100%;
    }
}

/* Quiz Specific Styles */
.quizMainSection {
    padding: 134px 0 67px;
    background: linear-gradient(147deg, var(--mintCream) 0%, rgba(238, 243, 239, 0.6) 100%);
    min-height: 100vh;
}

.quizHeaderArea {
    text-align: center;
    margin-bottom: 57px;
}

.quizMainTitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    color: var(--forestShade);
    margin-bottom: 19px;
    font-weight: 700;
}

.quizSubtitle {
    font-size: 1.17rem;
    color: var(--neutralGray);
    max-width: 640px;
    margin: 0 auto 43px;
    line-height: 1.6;
}

.progressContainer {
    max-width: 520px;
    margin: 0 auto;
}

.progressTracker {
    width: 100%;
    height: 8px;
    background: rgba(88, 129, 87, 0.15);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 13px;
}

.progressIndicator {
    height: 100%;
    background: linear-gradient(90deg, var(--oceanBlue), var(--secondaryTone));
    border-radius: 12px;
    width: 20%;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progressText {
    font-size: 0.94rem;
    color: var(--neutralGray);
    font-weight: 500;
}

.quizFormWrapper {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
    min-height: 420px;
}

.questionPanel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.questionPanel.activeQuestion {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.questionContent {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(11px);
    border-radius: 19px;
    padding: 41px;
    border: 1px solid rgba(88, 129, 87, 0.12);
    box-shadow: 0 7px 29px rgba(88, 129, 87, 0.08);
}

.questionTitle {
    font-size: 1.43rem;
    color: var(--forestShade);
    margin-bottom: 31px;
    font-weight: 600;
    text-align: center;
}

.answerOptionsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 17px;
}

.answerChoice {
    display: block;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(88, 129, 87, 0.15);
    border-radius: 13px;
    padding: 23px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.answerChoice:hover {
    border-color: var(--oceanBlue);
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 21px rgba(88, 129, 87, 0.12);
}

.answerChoice.selectedChoice {
    border-color: var(--oceanBlue);
    background: rgba(88, 129, 87, 0.08);
    box-shadow: 0 4px 17px rgba(88, 129, 87, 0.15);
}

.answerChoice input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.optionLabel {
    display: block;
    font-size: 1.11rem;
    font-weight: 600;
    color: var(--forestShade);
    margin-bottom: 7px;
}

.optionDescription {
    display: block;
    font-size: 0.91rem;
    color: var(--neutralGray);
}

.quizNavigationArea {
    max-width: 780px;
    margin: 47px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 23px;
}

.navigationButton {
    padding: 16px 34px;
    border: none;
    border-radius: 11px;
    font-size: 1.07rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
}

.backButton {
    background: rgba(138, 155, 168, 0.15);
    color: var(--neutralGray);
}

.backButton:hover:not(:disabled) {
    background: rgba(138, 155, 168, 0.25);
    transform: translateX(-2px);
}

.backButton:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nextButton {
    background: linear-gradient(135deg, var(--oceanBlue), var(--secondaryTone));
    color: white;
    box-shadow: 0 4px 17px rgba(88, 129, 87, 0.25);
}

.nextButton:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 7px 24px rgba(88, 129, 87, 0.35);
}

.nextButton:disabled {
    background: rgba(138, 155, 168, 0.4);
    cursor: not-allowed;
    box-shadow: none;
}

/* Success Popup Styles */
.successPopupOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(62, 90, 61, 0.85);
    backdrop-filter: blur(13px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.successPopupContent {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(17px);
    border-radius: 23px;
    padding: 47px;
    text-align: center;
    max-width: 480px;
    width: 90%;
    border: 1px solid rgba(88, 129, 87, 0.15);
    box-shadow: 0 13px 47px rgba(88, 129, 87, 0.25);
    position: relative;
    overflow: hidden;
}

.checkmarkAnimation {
    margin-bottom: 31px;
}

.checkmarkCircle {
    width: 73px;
    height: 73px;
    border: 3px solid var(--oceanBlue);
    border-radius: 50%;
    margin: 0 auto 27px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmarkCircle.animate {
    animation: circleGrow 0.6s ease-in-out;
}

.checkmarkStem, .checkmarkKick {
    position: absolute;
    background: var(--oceanBlue);
    border-radius: 2px;
}

.checkmarkStem {
    width: 3px;
    height: 17px;
    transform: rotate(45deg);
    left: 22px;
    top: 21px;
}

.checkmarkKick {
    width: 3px;
    height: 11px;
    transform: rotate(-45deg);
    left: 15px;
    top: 26px;
}

.checkmarkCircle.animate .checkmarkStem {
    animation: stemGrow 0.4s ease-in-out 0.3s both;
}

.checkmarkCircle.animate .checkmarkKick {
    animation: kickGrow 0.3s ease-in-out 0.5s both;
}

.popupTitle {
    font-size: 1.87rem;
    color: var(--forestShade);
    margin-bottom: 17px;
    font-weight: 700;
}

.popupMessage {
    font-size: 1.13rem;
    color: var(--neutralGray);
    margin-bottom: 11px;
}

.popupDescription {
    font-size: 0.97rem;
    color: var(--neutralGray);
    margin-bottom: 34px;
    line-height: 1.6;
}

.continueButton {
    background: linear-gradient(135deg, var(--oceanBlue), var(--secondaryTone));
    color: white;
    padding: 17px 39px;
    border: none;
    border-radius: 11px;
    font-size: 1.11rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 23px rgba(88, 129, 87, 0.25);
}

.continueButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 34px rgba(88, 129, 87, 0.35);
}

/* Animations */
@keyframes circleGrow {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes stemGrow {
    0% { height: 0; }
    100% { height: 17px; }
}

@keyframes kickGrow {
    0% { height: 0; }
    100% { height: 11px; }
}

.floatingParticle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--oceanBlue);
    border-radius: 50%;
    animation: floatUp 4s ease-out forwards;
    opacity: 0.7;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .quizMainSection {
        padding: 109px 0 47px;
    }

    .quizMainTitle {
        font-size: 2.3rem;
    }

    .quizSubtitle {
        font-size: 1.07rem;
    }

    .questionContent {
        padding: 27px;
    }

    .questionTitle {
        font-size: 1.27rem;
    }

    .answerOptionsGrid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .answerChoice {
        padding: 19px;
    }

    .quizNavigationArea {
        flex-direction: column;
        gap: 17px;
    }

    .navigationButton {
        width: 100%;
    }

    .checkmarkCircle {
        width: 61px;
        height: 61px;
    }

    .popupTitle {
        font-size: 1.63rem;
    }

    .popupMessage {
        font-size: 1.04rem;
    }

    .continueButton {
        padding: 15px 31px;
        font-size: 1.04rem;
    }
}