    body {
        margin: 0;
        padding: 0;
        color: #fff;
    }

    a {
        color: #fff;
        text-decoration: none;
    }

    a:hover {
        transition: 0.2s;
        color: #2196F3;
    }

    ul {
        margin: 0;
        padding: 0;
    }

    li {
        list-style-type: none;
    }

    #app {
        text-align: center;
        background-color: #1f0953;
    }

    .box {
        width: 1440px;
        margin: 0 auto;
    }

    .top-container {
        width: 100%;
        position: relative;
        overflow: hidden;
        
    }

    .bg-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translate(-50%, -50%);
        z-index: 0;
    }

    .top-container .box {
        position: relative;
        z-index: 1;
    }

    .nav-list {
        margin-top: 100px;
        border: 1px solid #fff;
        border-radius: 5px;
        background-color: #04051F;
        padding: 20px 0px;
    }

    .nav-list ul {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: space-around;
        align-items: center;
    }

    .nav-list ul a {
        font-size: 20px;
    }

    .nav-list ul a:hover {
        color: #2196F3;
    }

    .step-1 .calendar-wrapper {
        margin-top: 20px;
    }

    /* 日历组件样式 - 完美匹配设计图 */
    .calendar-wrapper {
        margin-top: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-family: 'Inter', sans-serif;
    }

    .calendar-title-box {
        background: linear-gradient(180deg, #3A1397 0%, #150531 100%);
        padding: 15px 30px;
        border-radius: 30px;
        display: inline-block;

        /* 重叠效果 */
        border: 2px solid #424242;
        position: relative;
        z-index: 2;
        width: 50%;
        transform: translateY(50%);
    }

    .calendar-title {
        font-size: 20px;
        font-weight: bold;
        letter-spacing: 2px;
        color: #fff;
    }

    .calendar-card {
        background: linear-gradient(180deg, #00000093 0%, #1f0953ff, #3A1397 100%);
        border: 2px solid #7E7E7E;
        border-radius: 15px;
        width: 100%;
        position: relative;

    }

    /* 背景装饰点 */
    .calendar-card::before {
        content: '';
        position: absolute;
        top: 10px;
        right: 15px;
        width: 100px;
        height: 100px;
        background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
        background-size: 15px 15px;
        pointer-events: none;

    }

    .calendar-grid {
        padding: 40px 30px 30px 30px;
    }

    .calendar-header {
        display: flex;

        justify-content: space-between;
        align-items: center;
        padding: 80px 30px 30px 30px;


    }

    .header-left {
        font-size: 22px;
        color: #fff;
        font-weight: 500;
    }

    .header-center {
        display: flex;
        align-items: center;
        gap: 10px;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 1000px;
        text-align: center;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
    }

    .selector-box {
        background: #fff;
        color: #000;
        padding: 3px 20px;
        border-radius: 4px;
        font-weight: bold;
        font-size: 18px;
    }

    .nav-btn {
        cursor: pointer;
        font-size: 18px;
        color: #00D1FF;
        font-weight: bold;
        padding: 0 5px;
        user-select: none;
    }

    .today-btn {
        background: #fff;
        color: #000;
        padding: 3px 15px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        font-size: 16px;
    }

    .calendar-grid {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 12px;
    }

    .weekday-header {
        font-size: 22px;
        padding-bottom: 10px;
        color: #fff;
        font-weight: bold;
    }

    .calendar-day {
        aspect-ratio: 3 / 1;
        background-color: #424242;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: bold;
        color: #C2C2C2;
        cursor: not-allowed;
        transition: all 0.2s ease;
        border: 1px solid rgba(255, 255, 255, 1);
    }

    /* 星期一 (可以点击) */
    .day-monday {
        background-color: #280671;
        color: #fff;
        cursor: pointer;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .day-monday:hover {
        background-color: #00BCD4;
        box-shadow: 0 0 15px rgba(58, 19, 151, 0.6);
    }

    /* 已选中状态 */
    .day-selected {
        background: #00BCD4;
        border: 1px solid #fff !important;
        color: #fff;
    }

    .day-other-month {
        opacity: 0.3;
    }

    .day-today {
        /* border: 1.5px solid #00D1FF; */
    }

    /* 文案部分样式 */
    .info-section {
        margin-top: 50px;
        position: relative;
        z-index: 2;
        padding-bottom: 100px;
    }

    .info-title {
        font-size: 48px;
        font-weight: bold;
        color: #4DE9FF;
        margin: 0;
        letter-spacing: 4px;
        font-family: Alimama ShuHeiTi;
    }

    .info-subtitle {
        font-size: 36px;
        font-weight: bold;
        color: #fff;
        letter-spacing: 2px;
        margin: 0 0 20px 0;
        font-family: Alimama ShuHeiTi;
    }

    .info-subtitle span {
        font-style: italic;
        margin-right: 10px;
    }

    .info-desc {
        font-size: 20px;
        color: #fff;
        line-height: 1.6;
        max-width: 1000px;
        margin: 0 auto;
        font-weight: 500;
    }

    .booking-btn {
        display: inline-block;
        padding: 13px 80px;
        border: 1px solid #fff;
        border-radius: 60px;
        color: #fff;
        font-size: 20px;
        text-decoration: none;
        transition: all 0.5s ease;
        background-color: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(5px);
        cursor: pointer;
        margin: 40px 0px;
        box-shadow: 1px 3px 15px 2px rgb(122 122 122);
    }

    .booking-btn:hover {
        background-color: #00BCD4;
        color: #fff;
    }

    .booking-btn .sub-text {
        display: block;
        font-weight: normal;
        margin-top: 2px;
    }

    /* 网格地板效果 */
    .grid-floor {
        position: absolute;
        bottom: -200px;
        left: 50%;
        width: 200%;
        height: 800px;
        background-image:
            linear-gradient(rgba(0, 209, 255, 0.3) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0, 209, 255, 0.3) 1px, transparent 1px);
        background-size: 80px 80px;
        background-position: center;
        transform: translateX(-50%) perspective(500px) rotateX(60deg);
        mask-image: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
        z-index: 1;
        pointer-events: none;
    }

    /* 中间部分样式 */
    .center-container {
        background-image: url('../images/center-bg.webp');
        padding: 0;
        position: relative;
        overflow: hidden;
        background-size: contain;
    }


    .section-title-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
    }

    .diamond {
        width: 16px;
        height: 16px;
        background-color: #4DE9FF;
        transform: rotate(45deg);
        box-shadow: 0 0 15px #4DE9FF;
    }

    #why-section {
        padding-top: 100px;
    }

    .section-title {
        font-size: 48px;
        font-weight: bold;
        color: #fff;
        margin: 0;
        letter-spacing: 2px;
    }

    .content-box {
        border: 1.5px solid #00D1FF;
        padding: 40px;
        text-align: left;
        margin: 0 auto;
        background: rgba(0, 209, 255, 0.03);
        position: relative;
        z-index: 2;
        box-shadow: inset 0 0 30px rgba(0, 209, 255, 0.05);
    }

    .content-list {
        margin: 0;
        padding: 0;
    }

    .content-item {
        font-size: 20px;
        line-height: 1.8;
        color: #fff;
        display: flex;
        align-items: flex-start;
    }

    .content-item:last-child {
        margin-bottom: 0;
    }

    .item-num {
        margin-right: 15px;
        font-weight: bold;
    }

    .item-text {
        font-weight: normal;
    }

    /* 5天学习路径样式 */
    .path-section {
        padding-top: 100px;
        position: relative;
        z-index: 2;
    }

    .path-title {
        font-size: 48px;
        font-weight: bold;
        color: #4DE9FF;
        margin-top: 0;
        margin-bottom: 50px;
        text-shadow: 0 0 20px rgba(77, 233, 255, 0.4);
    }

    .testimonials-section .path-title {
        margin-bottom: 100px;
    }

    .timeline-container {
        margin: 0 auto;
        position: relative;
        text-align: left;
    }

    .timeline-line {
        position: absolute;
        top: 70px;
        left: 0px;
        width: 4px;
        height: calc(100% - 140px);
        background-color: #5707DF;
        z-index: 1;
        transform: translateX(15px);
    }

    .timeline-step {
        display: flex;
        align-items: center;
        margin-bottom: 80px;
        position: relative;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
    }

    .timeline-step:last-child {
        margin-bottom: 0;
    }

    /* .step-node 已被 .day-box::before 所取代 */

    .day-box {
        background-color: #D0B4FF;
        color: #000;
        padding: 15px 0px 15px 15px;
        border-radius: 4px;
        font-size: 24px;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-width: 280px;
        margin-right: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        margin-left: 60px;
    }

    .day-box::before {
        content: "";
        position: absolute;
        left: 0px;
        width: 25px;
        height: 25px;
        background-color: #5707DF;
        border: 4px solid #150531;
        border-radius: 50%;
        z-index: 2;
        box-shadow: 0 0 15px #5707DF;
    }


    .day-box .arrows {
        color: #FFFFFF;
        letter-spacing: -2px;
        margin-left: 20px;
    }

    .step-content {
        flex: 1;
    }

    .step-bullets {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .bullet-item {
        font-size: 20px;
        color: #fff;
        line-height: 1.6;
        margin-bottom: 0px;
        display: flex;
        align-items: flex-start;
    }

    .bullet-item::before {
        content: '•';
        margin-right: 15px;
        font-weight: bold;
        color: #fff;
    }

    /* 备注/利益点模型样式 */
    .benefit-section {
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .pill-notice {
        display: inline-block;
        padding: 15px 10px;
        border: 1px solid #D0B4FF;
        border-radius: 50px;
        font-size: 20px;
        color: #fff;
        letter-spacing: 1px;
        font-weight: bold;
        margin: 60px 0 30px 0;
    }

    .pill-notice span {
        margin: 0 20px;
    }

    .benefit-glow-title {
        font-size: 48px;
        font-weight: bold;
        color: #4BF3FF;
        margin-bottom: 20px;
        letter-spacing: 2px;
        margin-top: 70px
    }

    .benefit-subtitle {
        font-size: 28px;
        line-height: 1.6;
        color: #fff;
        margin: 0 auto;
        font-weight: normal;
        margin-bottom: 40px;
    }

    .step-section {
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .step-title {
        background-color: #D0B4FF;
        padding: 15px 40px;
        font-size: 28px;
        font-weight: bold;
        color: #04051F;
        letter-spacing: 1px;
        display: inline-block;
    }

    /* Step 2 工具区域样式 */
    .step-tool-container {
        text-align: left;
        margin: 60px 0;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .pill-action {
        display: inline-flex;
        align-items: center;
        padding: 12px 20px;
        border: 1.5px solid #D0B4FF;
        border-radius: 60px;
        font-size: 24px;
        margin-bottom: 40px;
        gap: 15px;
        letter-spacing: 1px;
        background-color: #280671;
    }

    .tool-links-list {
        margin-bottom: 80px;
        padding-left: 60px;
    }

    .tool-link-row {
        display: flex;
        align-items: center;
        gap: 30px;
        margin-bottom: 20px;
        font-size: 18px;

    }

    .tool-link-row a {
        font-size: 18px;
        color: #D0B4FF;
        text-decoration: underline;
        font-weight: normal;
    }

    .tool-link-row a:hover {
        color: #2196F3;
    }

    .benefit-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        padding-left: 60px;
    }

    .brand-header {
        display: flex;
        align-items: flex-end;
        gap: 15px;
        margin-bottom: 30px;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: flex-end;
        justify-content: flex-start;
    }

    .brand-name {
        font-weight: bold;
        letter-spacing: 1px;
    }

    .brand-name span {
        font-size: 20px;
        font-weight: normal;
        margin-left: 10px;
        color: #D0B4FF;
    }

    .perks-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .perk-item {
        font-size: 18px;
        line-height: 1.8;
        display: flex;
        align-items: flex-start;
    }

    .perk-item::before {
        content: '•';
        margin-right: 10px;
        font-weight: bold;
    }

    .brand-disclaimer {
        font-size: 15px;
        color: #fff;
        margin-top: 10px;
        margin-left: 30px;
    }

    .step-2 {
        margin: 80px 0px;
    }

    /* STEP 3 样式 */
    .booking-form-container {
        margin: 40px auto;
        position: relative;
        z-index: 2;
        padding: 20px 0;
    }

    .form-header-pills {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        margin-bottom: 50px;
    }

    .pill-box-small {
        display: inline-flex;
        align-items: center;
        padding: 10px 30px;
        border: 1.5px solid #D0B4FF;
        border-radius: 60px;
        font-size: 20px;
        color: #fff;
        gap: 12px;
        background-color: #280671;
    }

    .plus-sign {
        font-size: 32px;
        color: #fff;
        font-weight: bold;
    }

    .booking-table {
        width: 100%;
        background-color: #fff;
        border-radius: 15px;
        border-collapse: collapse;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }

    .booking-table tr {
        border-bottom: 2px solid #280671;
    }

    .booking-table tr:last-child {
        border-bottom: none;
    }

    .booking-table td {
        padding: 22px 35px;
        color: #000;
        font-size: 24px;
        font-weight: bold;
        text-align: left;
    }

    .label-cell {
        width: 38%;
        border-right: 2px solid #280671;
    }

    .input-cell {
        width: 62%;
    }

    .booking-table input {
        width: 100%;
        border: none;
        outline: none;
        font-size: 16px;
        font-family: inherit;
        font-weight: normal;
        background: transparent;
    }

    .submit-btn-wrapper {
        margin-top: 30px;
        text-align: center;
    }

    .submit-btn {
        background: #9260ff;
        border: none;
        padding: 18px 80px;
        border-radius: 50px;
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 1px 3px 15px 2px rgb(20 26 101);
    }

    .submit-btn:hover:not(:disabled) {
        transform: translateY(-3px);
        background: #260079;
    }

    .submit-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

    .submit-msg {
        margin-top: 20px;
        font-size: 18px;
        font-weight: bold;
    }

    .submit-msg.success {
        color: #00ff88;
    }

    .submit-msg.error {
        color: #ff4d4d;
    }

    /* 讲师简介样式 */
    .teacher-section {
        padding: 100px 0 0 0;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .teacher-flex {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        gap: 60px;
        margin: 50px 0 60px 0;
        padding: 0px;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .teacher-image img {
        border-radius: 24px;
    }

    .teacher-info-box {
        padding: 20px;
        text-align: left;
        color: #fff;
        flex: 1;
        max-width: 1000px;
        border-radius: 4px;
        box-shadow: inset 0 0 30px rgba(0, 209, 255, 0.05);
    }

    .teacher-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .teacher-desc-item {
        font-size: 24px;
        line-height: 2;
        margin-bottom: 0px;
        display: flex;
        align-items: flex-start;
        color: #fff;
    }

    .teacher-desc-item::before {
        content: '•';
        margin-right: 10px;
        font-weight: bold;
        color: #fff;
    }

    .teacher-desc-item:last-child {
        margin-bottom: 0;
    }

    /* 坚持与从事部分样式 */
    .belief-section {
        padding: 50px 0 0 0;
        text-align: left;
        color: #fff;
        position: relative;
        z-index: 2;
    }

    .belief-pill {
        display: inline-block;
        padding: 12px 45px;
        background: #D0B4FF;
        border-radius: 60px;
        font-size: 24px;
        margin-bottom: 30px;
        color: #fff;
    }

    .belief-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        margin: 0 auto 40px;
        padding: 0px;
    }

    .belief-card {
        border: 1px solid #D0B4FF;
        border-radius: 10px;
        padding: 40px;
        background: rgba(4, 5, 31, 0.3);
        display: flex;
        align-items: center;
        gap: 30px;
        text-align: left;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: flex-start;
    }

    .belief-icon {
        flex-shrink: 0;
    }

    .belief-icon img {
        width: 70px;
        height: auto;
    }

    .belief-text h3 {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 10px;
        margin-top: 0;
    }

    .belief-text p {
        font-size: 20px;
        line-height: 1.6;
        opacity: 0.9;
        margin: 0;
    }

    .belief-bottom-box {
        border: 1px solid #D0B4FF;
        border-radius: 10px;
        padding: 40px;
        background: rgba(4, 5, 31, 0.3);
        margin: 0 auto;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .belief-bottom-left {
        flex: 1;
    }

    .belief-title-sm {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 10px;
        margin-top: 0;
    }

    .belief-ul {
        list-style: none;
        padding: 0;
        margin: 0 0 50px 0;
    }

    .belief-li {
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 0px;
        display: flex;
        align-items: flex-start;
    }

    .belief-li span {
        font-weight: bold;
    }

    .belief-li::before {
        content: '•';
        margin-right: 10px;
        font-weight: bold;
        color: #fff;
    }

    .belief-logos img {
        height: 140px;
        margin-bottom: -10px;
    }

    .bottom-container {
        padding: 100px 0;
        background-image: url('../images/bottom-container.webp');
        background-color: #04051F;
        background-size: cover;
    }

    /* FAQ 样式 */
    .faq-list {
        margin: 60px 0;
    }

    .faq-item {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
        align-items: stretch;
    }

    .faq-question-side {
        display: flex;
        width: 450px;
        border-radius: 5px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .faq-q-num {
        background-color: #280671;
        color: #D0B4FF;
        width: 100px;
        font-size: 24px;
        font-weight: bold;
        padding-top: 10px;
    }

    .faq-q-text {
        background-color: #4BF3FF;
        color: #280671;
        flex: 1;
        padding: 10px 20px 20px 20px;
        font-size: 22px;
        font-weight: bold;
        text-align: left;
    }

    .faq-answer-side {
        background-color: #fff;
        color: #280671;
        border-radius: 5px;
        padding: 10px 20px 50px 20px;
        flex: 1;
        display: flex;
        font-size: 20px;
        line-height: 1.6;
        text-align: left;
        font-weight: 500;
        min-height: 50px;
    }

    /* 学员评价样式 */
    .testimonials-section {
        padding-top: 100px;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .testimonial-card {
        background: linear-gradient(to right, #451891, #000);
        border: 1px solid rgba(255, 255, 255, 0.4);
        border-radius: 10px;
        padding: 20px 0px;
        position: relative;
        text-align: left;
        margin-bottom: 100px;
    }

    .testimonial-card:last-child {
        margin-bottom: 0;
    }

    .student-avatar {
        position: absolute;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        overflow: hidden;
        border: 5px solid #fff;
        background-color: #04051F;
        z-index: 3;
        transform: translate(-30%, -30%);
        top: 0;
        left: 0;
    }

    .student-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .student-name {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 20px;
        color: #fff;
        margin-left: 150px;
    }

    .testimonial-text-box {
        padding: 30px 40px;
        background: linear-gradient(to right, #bb9fecff, #56378bff, #000);
        margin-bottom: 20px;
        padding-left: 150px;
    }

    .testimonial-text {
        font-size: 20px;
        line-height: 1.8;
        color: #fff;
        margin: 0;
    }

    .testimonial-proof {
        text-align: center;
        margin: 40px 0px 20px 0;
    }

    .testimonial-proof img {
        border-radius: 16px;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7);
        border: 1px solid #ba9eeb;
    }


    /* 免责声明样式 */
    .disclaimer-box {
        border: 2px solid #4BF3FF;
        padding: 40px;
        text-align: left;
        color: #fff;
        margin-top: 60px;
        background: rgba(4, 5, 31, 0.3);
        color: #4BF3FF;
    }

    .disclaimer-title-large {
        color: #fff;
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 45px;
        line-height: 1.4;
    }

    .disclaimer-entry {
        margin-bottom: 25px;
    }

    .disclaimer-entry h3 {
        font-size: 20px;
        margin: 0 0 5px 0;
        font-weight: lighter;
    }

    .disclaimer-entry p {
        font-size: 18px;
        line-height: 1.7;
        margin: 0;
        font-weight: lighter;
    }

    .disclaimer-footer-hint {
        margin-top: 50px;
        font-size: 18px;
        font-weight: bold;
    }

    @media screen and (max-width: 1440px) {
        .box {
            width: 90%;
        }

        .header-left {
            font-size: 18px;
        }

        .nav-list ul a {
            font-size: 16px;
        }

        .weekday-header {
            font-size: 16px;
        }

        .calendar-day {
            aspect-ratio: 2 / 1;
            font-size: 16px;
        }

        .info-title {
            font-size: 32px;
        }

        .info-subtitle {
            font-size: 24px;
        }

        .info-desc {
            font-size: 16px;
        }

        .booking-btn {
            padding: 10px 40px;
            font-size: 18px;
        }

        .section-title {
            font-size: 28px;
        }

        .section-title-wrapper {
            margin-bottom: 40px;
        }

        .content-item {
            font-size: 16px;
        }

        .content-box {
            padding: 20px;
        }

        .path-title {
            font-size: 32px;
        }

        .bullet-item {
            font-size: 16px;
        }

        .day-box {
            font-size: 18px;
            min-width: 220px;
        }

        .timeline-line {
            top: 60px;
        }

        .pill-notice {
            font-size: 16px;
            margin-top: 0;
        }

        .benefit-glow-title {
            font-size: 32px;
            margin-bottom: 10px;
        }

        .benefit-subtitle {
            font-size: 18px;
        }

        .step-title {
            font-size: 24px;
        }

        .pill-action {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .step-tool-container {
            margin: 40px 0;
        }

        .tool-links-list {
            padding-left: 10px;
            margin-bottom: 50px;
        }

        .benefit-grid {
            padding-left: 10px;
        }

        .perk-item {
            font-size: 16px;
        }

        .pill-box-small {
            font-size: 18px;
        }

        .booking-table td {
            font-size: 16px;
            padding: 10px 20px;
        }

        .teacher-flex {
            gap: 40px;
            margin: 20px 0;
        }

        .teacher-info-box {
            padding: 0;
        }

        .teacher-desc-item {
            font-size: 18px;
        }

        .teacher-image img {
            width: 250px;
        }

        .teacher-section .path-title {
            margin-bottom: 0px;
        }

        .belief-pill {
            font-size: 18px;
            padding: 10px 20px;
        }

        .belief-text h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .belief-text p {
            font-size: 16px;
        }

        .belief-icon img {
            width: 50px;
        }

        .belief-card {
            gap: 20px;
            padding: 15px 30px;
        }

        .belief-bottom-box {
            padding: 15px 30px;
        }

        .belief-title-sm {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .belief-li {
            font-size: 16px;
        }

        .belief-ul {
            margin-bottom: 20px;
        }

        .calendar-wrapper {
            margin-top: 20px;
        }

        .calendar-title-box {
            width: 40%;
        }

        .faq-q-num {
            font-size: 18px;

        }

        .faq-q-text {
            font-size: 16px;
            padding: 10px 20px;
        }

        .faq-answer-side {
            padding: 10px 20px;
            font-size: 16px;
            line-height: normal;
        }

        .disclaimer-title-large {
            font-size: 18px;
            margin-bottom: 30px;
        }

        .disclaimer-entry h3 {
            font-size: 18px;
            margin-bottom: 5px;

        }

        .disclaimer-entry p {
            font-size: 16px;
        }

        .disclaimer-entry {
            margin-bottom: 20px;
        }

        .disclaimer-footer-hint {
            font-size: 16px;
            margin-top: 20px;
            font-weight: normal;
        }

        .bottom-container {
            padding-top: 50px;
        }

        .disclaimer-box {
            padding: 20px;
        }

        .testimonial-text {
            font-size: 16px;
        }

        .student-name {
            font-size: 28px;
            margin-left: 120px;
        }

        .testimonial-text-box {
            padding-left: 120px;
        }

        .student-avatar {
            width: 120px;
            height: 120px;
        }
    }

    @media screen and (max-width: 1000px) {
        .box {
            width: 90%;
        }

        .submit-btn {
            font-size: 20px;
            padding: 15px 50px;
        }

        .nav-list {
            padding: 20px;
            margin-top: 50px;
        }

        .nav-list ul {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .nav-list ul li a {
            font-size: 16px;
            text-align: left;
            width: 100%;
            display: inline-block;
        }

        .calendar-title {
            font-size: 16px;
        }

        .calendar-title-box {
            width: 50%;
            padding: 8px 20px;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 60px 0px 20px 0px;
            flex-direction: column;
            gap: 20px;
        }

        .header-center {
            position: relative;
            width: auto;
        }

        .calendar-day {
            aspect-ratio: 2 / 1;
            font-size: 15px;
        }

        .student-name {
            font-size: 18px;
        }

        .testimonials-section .path-title {
            margin-bottom: 80px;
        }

        .student-avatar {
            width: 100px;
            height: 100px;
        }

        .calendar-grid {
            padding: 20px;
        }

        .selector-box {
            font-size: 16px;
        }

        .info-title {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .info-subtitle {
            font-size: 18px;
        }

        .info-desc {
            font-size: 15px;
        }

        .booking-btn {
            margin: 30px 0;
            font-size: 15px;
        }

        .info-section {
            padding-bottom: 50px;
        }

        .step-title {
            font-size: 18px;
            padding: 10px 20px;
        }

        .pill-action {
            font-size: 15px;
        }

        .pill-action svg {
            display: none;
        }

        .tool-link-row {
            font-size: 15px;
            gap: 10px;
        }

        .tool-link-row a {
            font-size: 15px;
        }


        .section-title {
            font-size: 20px;
        }

        .content-item {
            font-size: 15px;
        }

        .section-title-wrapper {
            gap: 10px;
            justify-content: space-around;
        }

        .path-title {
            font-size: 24px;
            margin-bottom: 30px;
        }

        .timeline-line {
            display: none;
        }

        .timeline-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            position: relative;
            flex-direction: column;
            flex-wrap: nowrap;
            align-content: flex-start;
            justify-content: center;
        }

        .day-box {
            font-size: 16px;
            margin-left: 0;
            margin-bottom: 20px;
            padding: 8px 0 8px 8px;
            width: 100%;
        }

        .day-box::before {
            display: none;
        }

        .bullet-item::before {
            margin-right: 8px;
        }

        .path-section {
            padding-top: 50px;
        }

        .benefit-grid {
            grid-template-columns: 1fr;
            gap: 40px;
            padding-left: 0px;
        }

        .brand-header {
            font-size: 16px;
            margin-bottom: 10px;
        }

        .brand-header img {
            width: 150px;
        }

        .benefit-glow-title {
            font-size: 24px;
        }

        .benefit-subtitle {
            font-size: 16px;
            text-align: left;
        }

        .pill-notice span {
            display: none;
        }

        .step-2 {
            margin: 40px 0;
        }

        .booking-form-container {
            padding: 0;
        }

        .pill-box-small {
            font-size: 15px;
            padding: 5px 20px;
        }

        .pill-box-small svg {
            display: none;
        }

        .form-header-pills {
            margin-bottom: 20px;
        }

        .booking-table td {
            font-size: 15px;
            padding: 8px 15px;
        }

        .teacher-flex {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 40px;
            margin: 40px 0;
            padding: 0px;
            flex-direction: column;
            flex-wrap: nowrap;
            align-content: center;
        }

        .teacher-desc-item {
            font-size: 15px;
            line-height: normal;
            margin-bottom: 5px;
        }

        .belief-section {
            padding: 10px 0;
        }

        .belief-pill {
            font-size: 16px;
            padding: 8px 15px;
        }

        .belief-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin: 0 auto 40px;
            padding: 0px;
        }

        .belief-text p {
            font-size: 15px;
        }

        .belief-card {
            padding: 15px;
        }

        .belief-icon img {
            width: 40px;
        }

        .belief-bottom-box {
            border: 1px solid #D0B4FF;
            border-radius: 10px;
            padding: 20px;
            background: rgba(4, 5, 31, 0.3);
            max-width: 1400px;
            margin: 0 auto;
            text-align: left;
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            flex-direction: column;
            align-content: flex-start;
        }

        .belief-li {
            font-size: 15px;
        }

        .perk-item {
            font-size: 15px;
        }

        .belief-title-sm {
            font-size: 16px;
        }

        .brand-name span {
            font-size: 15px;
        }

        .belief-logos {
            font-size: 0;
            margin-top: 20px;
        }

        .belief-logos img {
            height: 80px;
            margin-bottom: 0px;
            font-size: 0;
        }

        .faq-question-side {
            display: flex;
            width: 100%;
            border-radius: 5px;
            flex-shrink: 0;
            flex-direction: unset;
            flex-wrap: nowrap;
            align-content: center;
            justify-content: center;
            align-items: center;
        }

        .faq-q-num {
            width: auto;
        }

        .faq-q-num,
        .faq-q-text {
            padding: 20px;
        }

        .faq-item {
            display: flex;
            gap: 0px;
            margin-bottom: 15px;
            flex-direction: column;
            border-radius: 5px;
            overflow: hidden;
        }

        .faq-answer-side,
        .faq-question-side {
            border-radius: 0;
        }

        .faq-answer-side {
            font-size: 15px;
        }

        .faq-list {
            margin: 0 0 40px 0;
        }

        .disclaimer-title-large,
        .disclaimer-entry h3 {
            font-size: 16px;
        }

        .disclaimer-title-large {
            margin-bottom: 20px;
        }

        .disclaimer-entry {
            margin-bottom: 15px;
        }

        .disclaimer-entry p {
            font-size: 15px;
        }

        .disclaimer-footer-hint {
            font-size: 15px;
            margin-top: 15px;
        }

        .disclaimer-box {
            margin-top: 40px;
        }

        .testimonial-proof {
            padding: 0 20px;
        }

        .testimonial-proof img {
            width: 100%;
        }

        .pill-notice {
            margin-top: 20px;
        }

        .benefit-glow-title {
            margin: 20px 0px 20px 0px;
        }

        #why-section,
        #path-section,
        #testimonials-section,
        #teacher-section,
        #faq-section {
            padding-top: 80px;
        }

    }

    @media screen and (max-width: 768px) {
        .calendar-day {
            aspect-ratio: 1 / 1;
        }

        .testimonial-text-box {
            padding: 20px;
        }

        .testimonial-card {
            padding: 15px 0;
        }

        .testimonial-proof {
            margin: 0px;
        }

        .student-avatar {
            transform: translate(-15%, -20%);
        }

        .student-name {
            margin-left: 80px;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-size: 15px;
        }

        .student-avatar {
            width: 70px;
            height: 70px;
        }

        .testimonials-section .path-title {
            margin-bottom: 50px;
        }

        .teacher-section {
            padding-top: 60px;
        }

        .belief-grid {
            margin-bottom: 20px;
        }

        .testimonial-card {
            margin-bottom: 70px;
        }

        .submit-btn {
            font-size: 16px;
        }

        .testimonials-section {
            padding-top: 40px;
        }

        .bottom-container {
            padding-bottom: 10px;
        }

        #why-section,
        #path-section,
        #testimonials-section,
        #teacher-section,
        #faq-section {
            padding-top: 50px;
        }

        .belief-logos img {
            height: 60px;
        }

        .nav-btn {
            font-size: 15px;
        }

        .nav-list ul {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 10px;
        }

    }