/* NJ-87676: App page styles - Figma Design Implementation */
.page_wrap.page_app {
    background: url('https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/mobile/images/index/kids/pattern.webp');
    font-family: "M PLUS Rounded 1c", sans-serif;
    padding: 0;
}

.page_app * {
    box-sizing: border-box;
}

.page_app .sec {
    position: relative;
}

.page_app .sec .sec_inner {
    max-width: 140rem;
    width: 100%;
    margin: 0 auto;
    padding: 15rem 0;
}

/* Consolidated highlight class */
.page_app .highlight {
    color: #2d80e6;
    font-weight: 800;
}

/* Giza (zigzag) patterns */
.page_app .giza {
    width: 100%;
    height: 2.1rem;
    background-repeat: repeat-x;
    background-size: auto 2.1rem;
    position: absolute;
    top: -2.1rem;
}
.page_app .giza_reversal {
    top: unset;
}

.page_app .giza_blue {
    background-image: url(../images/index/kids/giza_blue.webp);
}

.page_app .giza_green {
    background-image: url(../images/index/kids/giza_green.webp);
}

.page_app .giza_red {
    background-image: url(../images/index/kids/giza_red.webp);
}

.page_app .giza_yellow {
    background-image: url(../images/index/kids/giza_yellow.webp);
}

.page_app .giza_reversal {
    transform: scale(-1);
}

/* Section Titles */
.page_app .section_title {
    color: #222222;
    text-align: center;
    font-size: 3.6rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 4rem;
}

.page_app .section_title--white {
    color: #ffffff;
}

.page_app .section_title--dark {
    color: #222222;
}

.page_app .section_title .title_icon {
    display: inline-block;
    margin-right: 1rem;
}

.page_app .section_subtitle {
    color: #222222;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 5rem;
}

.page_app .section_subtitle--white {
    color: #ffffff;
}

/* Button Styles */
.page_app .btn_trial {
    background: #7f7fff 0% 0% no-repeat padding-box;
    box-shadow: 8px 8px 0px #5c5cee;
    border-radius: 100px;
    max-width: 625px;
    width: 100%;
    height: auto;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 500;
    font-family: "M PLUS Rounded 1c";
    line-height: calc(37 / 22);
    padding: 15px 0;
    text-shadow: none;
    border: none;
    display: inline-block;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.page_app .btn_trial:hover {
    transform: translateY(4px);
    box-shadow: none;
}

.page_app .btn_trial .text_trial {
    color: #fff56a;
    font-size: 3rem;
    font-weight: bold;
    line-height: calc(55 / 30);
    position: relative;
}

.page_app .btn_trial .text_trial::before {
	position:absolute;
	content:url('https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/index/kids/stars.svg');
	width:3.4rem;
	top:50%;
	left:5.4rem;
	transform: translateY(-50%);
}

.page_app .btn_trial .text_trial::after {
	position:absolute;
	content:url('https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/index/kids/arrow.svg');
	width:3.4rem;
	height:3.4rem;
	top:50%;
	right:5.4rem;
	transform: translateY(-50%);
}

.page_app .btn_trial .text_trial span {
    font-size: 4.5rem;
    line-height: calc(55 / 45);
}

/* Animation base */
.page_app .js-fadeInUp {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.page_app .sec_top .sec_inner {
    text-align: center;
    padding-top: 10rem;
}

/* Page Kids Title */
.page_app .top_main_image {
    margin: 0 auto 6rem;
    max-width: 70rem;
}

.page_app .top_main_image img {
    width: 100%;
    height: auto;
    border-radius: 2rem;
}

.page_app .top_description {
    max-width: 90rem;
    margin: 0 auto 6rem;
}

.page_app .top_description_text {
    color: #222222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    margin: 0;
    text-align: left;
}

.page_app .top_cards {
    display: flex;
    gap: 7rem;
    margin: 6rem auto 15rem;
}

.page_app .top_card {
    width: 100%;
    max-width: 66.5rem;
    border-radius: 3rem;
    padding: 2rem;
}

.page_app .top_card--yellow {
    background: #fff56a;
}

.page_app .top_card--pink {
    background: #ffa3a3;
}

.page_app .top_card_inner {
    border-radius: 2rem;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    border: 5px solid;
}

.page_app .top_card--yellow .top_card_inner {
    background: #fff56a;
    border-color: #fffcd2;
}

.page_app .top_card--pink .top_card_inner {
    background: #ffa3a3;
    border-color: #ffe0e0;
}

.page_app .top_card_title {
    background: #222222;
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.36;
    margin: 0;
    padding: 1rem 3rem;
    text-align: center;
    border-radius: 10rem;
    width: 55rem;
    align-self: center;
}

.page_app .top_card_image {
    margin: 0;
    width: 100%;
    max-width: 55.5rem;
    align-self: center;
}

.page_app .top_card_image img {
    width: 100%;
    height: auto;
    border-radius: 2rem;
}

.page_app .top_card_text {
    color: #222222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    margin: 0;
    padding: 0;
    text-align: left;
    width: 100%;
    align-self: center;
    min-height: 30.4rem;
}

/* Button Area */
.page_app .sec_btn_area {
    padding: 5rem 0;
}

.page_app .sec_btn_area .sec_inner {
    text-align: center;
}

/* 
   Section 2: Learning Design (Blue Giza)
    */
.page_app .sec_learning_design {
    background: #96d2fe;
    padding: 0;
}

.page_app .section_title--yellow {
    color: #fff56a;
    font-size: 5.2rem;
    text-shadow: 2px 2px 0px #222222;
    margin-bottom: 6rem;
}

.page_app .learning_description {
    max-width: 90rem;
    margin: 0 auto 6rem;
}

.page_app .learning_description--second {
    margin-bottom: 6rem;
}

.page_app .learning_description_text {
    color: #222222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    margin: 0;
    text-align: left;
}

.page_app .learning_content_cards {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    max-width: 120rem;
    margin: 0 auto;
}

.page_app .learning_content_card {
    background: #ffffff;
    border-radius: 3rem;
    padding: 5rem;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 4.2rem;
    align-items: center;
}

.page_app .learning_content_textbox {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    contain: content;
}

.page_app .learning_content_title {
    position: relative;
    text-align: center;
    margin: 0;
    display: inline-block;
    width: 100%;
}

.page_app .learning_content_title_text {
    color: #222222;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.31;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.page_app .learning_content_title_text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1rem;
    background: #fff56a;
    border-radius: 10rem;
    z-index: -1;
}

.page_app .learning_content_text {
    color: #222222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    margin: 0;
    text-align: left;
}

/* 
   Section 3: Daily English
    */

.page_app .sec_daily_english .sec_inner {
    max-width: 140rem;
    margin: 0 auto;
}

.page_app .daily_description {
    text-align: center;
}

.page_app .daily_description_text {
    color: #222222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    max-width: 90rem;
    margin: 0 auto;
    text-align: left;
}

.page_app .daily_content_cards {
    display: flex;
    gap: 7rem;
    justify-content: center;
    align-items: flex-start;
}

.page_app .daily_content_card {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.page_app .daily_content_card--green .daily_content_textbox {
    background: #ffffff;
    border: 5px solid #67eec7;
    border-radius: 2rem;
    padding: 14.5rem 4rem 3rem;
    position: relative;
    z-index: 1;
}

.page_app .daily_content_card--pink .daily_content_textbox {
    background: #ffffff;
    border: 5px solid #ffa3a3;
    border-radius: 2rem;
    padding: 14.5rem 4rem 3rem;
    position: relative;
    z-index: 1;
}

.page_app .daily_content_image {
    position: absolute;
    top: -18.5rem;
    left: 6rem;
    width: 40rem;
    height: auto;
    z-index: 2;
}

.page_app .daily_content_card--green .daily_content_image {
    border: 5px solid #67eec7;
    border-radius: 2rem;
    overflow: hidden;
}

.page_app .daily_content_card--pink .daily_content_image {
    border: 4px solid #ffa3a3;
    border-radius: 2rem;
    overflow: hidden;
}

.page_app .daily_content_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page_app .daily_content_title {
    color: #222222;
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.page_app .daily_content_card--green .daily_content_title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 38.4rem;
    height: 1rem;
    background: #67eec7;
    border-radius: 10rem;
    z-index: -1;
}

.page_app .daily_content_card--pink .daily_content_title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35.8rem;
    height: 1rem;
    background: #ffa3a3;
    border-radius: 10rem;
    z-index: -1;
}

.page_app .daily_content_text {
    color: #222222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    margin: 0 0 3rem;
}

.page_app .daily_content_text:last-child {
    margin-bottom: 0;
}

/* 
   Section 4: Native Teacher (Red Giza)
    */
.page_app .sec_native_teacher {
    background: #ffa3a3;
    padding: 0;
}

.page_app .sec_native_teacher .sec_inner {
    padding: 15rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page_app .teacher_description {
    text-align: center;
    margin: 0 0 6rem;
}

.page_app .teacher_description_text {
    color: #222222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    max-width: 90rem;
    margin: 0 auto;
    text-align: left;
}

.page_app .teacher_description_text:last-child {
    margin-bottom: 0;
}

.page_app .teacher_cards {
    display: flex;
    justify-content: space-between;
    gap: 7rem;
}

.page_app .teacher_card {
    background: #ffffff;
    border-radius: 3rem;
    padding: 5rem;
    width: 100%;
    max-width: 66.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.page_app .teacher_card_title {
    background: #2d80e6;
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 100px;
    margin: 0;
}

.page_app .teacher_card_image {
    width: 100%;
    border-radius: 2rem;
    overflow: hidden;
}

.page_app .teacher_card_image img {
    width: 100%;
    height: auto;
    display: block;
}

.page_app .teacher_card_text {
    color: #222222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
}

.page_app .teacher_card_text p:last-child {
    margin-bottom: 0;
}

/* 
   Section 5: Individual Pace
    */
.page_app .sec_individual_pace .pace_description {
    max-width: 90rem;
    margin: 0 auto 6rem;
    text-align: left;
}

.page_app .sec_individual_pace .pace_description_text {
    color: #222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    margin: 0 0 0.5rem;
}

.page_app .pace_cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    margin-bottom: 15rem;
}

.page_app .pace_card {
    border-radius: 3rem;
    padding: 2rem;
    width: 100%;
    max-width: 116rem;
}

.page_app .pace_card_inner {
    border: 0.5rem solid;
    border-radius: 2rem;
    padding: 3.5rem;
    display: flex;
    align-items: flex-start;
    gap: 4.5rem;
}

.page_app .pace_card--yellow {
    background: #fff56a;
}

.page_app .pace_card--yellow .pace_card_inner {
    background: #fff56a;
    border-color: #fffcd2;
}

.page_app .pace_card--green {
    background: #67eec7;
}

.page_app .pace_card--green .pace_card_inner {
    background: #67eec7;
    border-color: #d2faee;
}

.page_app .pace_card_image {
    flex-shrink: 0;
}

.page_app .pace_card_image img {
    border-radius: 2rem;
    width: 45rem;
    height: auto;
    object-fit: cover;
}

.page_app .pace_card_text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.page_app .pace_card_title {
    background: #222;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 3rem;
    padding: 1rem 3rem;
    border-radius: 10rem;
    text-align: center;
    max-width: 55.5rem;
}

.page_app .pace_card_description {
    color: #222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    margin: 0;
}

.page_app .sec_parent_points {
    background: #fff56a;
    padding: 0;
}

.page_app .sec_parent_points .parent_description {
    max-width: 90rem;
    margin: 0 auto 6rem;
    text-align: left;
}

.page_app .sec_parent_points .parent_description_text {
    color: #222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    margin: 0;
}

.page_app .parent_cards {
    display: flex;
    justify-content: center;
    gap: 7rem;
}

.page_app .parent_card {
    background: transparent;
    border-radius: 0;
    padding: 0;
    width: 100%;
    max-width: 66.5rem;
    box-shadow: none;
}

.page_app .parent_card_inner {
    background: #fff;
    border: 0.5rem solid #2D80E6;
    border-radius: 2rem;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.page_app .parent_card_title {
    background: #2D80E6;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    padding: 1rem 3rem;
    border-radius: 10rem;
    text-align: center;
}

.page_app .parent_card_image {
    text-align: center;
}

.page_app .parent_card_image img {
    border-radius: 2rem;
    width: 45.6rem;
    height: 34.2rem;
    object-fit: cover;
}

.page_app .parent_card_text {
    color: #222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    margin: 0;
    text-align: left;
}

/* 
   Section 7: Child Growth
    */
.page_app .sec_child_growth {
}

.page_app .growth_cards {
    display: flex;
    justify-content: center;
    gap: 10rem;
    flex-wrap: wrap;
    margin-bottom: 15rem;
}

.page_app .growth_card {
    width: 100%;
    max-width: 55rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.page_app .growth_card_title {
    position: relative;
    display: inline-block;
    text-align: center;
    margin: 0;
}

.page_app .growth_card_title_text {
    color: #222;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.3;
    display: block;
    position: relative;
    z-index: 1;
    padding: 0 1rem 1rem;
}

.page_app .growth_card_title_line {
    position: absolute;
    bottom: 1.3rem;
    left: 0;
    right: 0;
    height: 1rem;
    background: #ffa3a3;
    border-radius: 10rem;
    z-index: 0;
}

.page_app .growth_card_image {
    text-align: center;
}

.page_app .growth_card_image img {
    border-radius: 2rem;
    width: 45rem;
    height: 27.2rem;
    object-fit: cover;
}

.page_app .growth_card_text {
    color: #222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    margin: 0;
    text-align: left;
}

/* 
   Section 8: Testimonials (Green Giza)
    */
.page_app .sec_testimonials {
    background: #67eec7;
    padding: 0;
}

.page_app .sec_testimonials .sec_inner {
    padding: 8rem 2rem;
}

.page_app .testimonial_cards {
    display: flex;
    justify-content: center;
    gap: 9rem;
    flex-wrap: wrap;
}

.page_app .testimonial_card {
    background: #ffffff;
    border-radius: 2rem;
    padding: 4rem;
    width: 100%;
    max-width: 52rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: 5px solid #7F7FFF;
}

.page_app .testimonial_profile {
    text-align: center;
}

.page_app .testimonial_profile img {
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    object-fit: cover;
}

.page_app .testimonial_title {
    color: #7F7FFF;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.page_app .testimonial_content {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    justify-content: space-between;
}

.page_app .testimonial_text {
    color: #222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    margin: 0;
    min-height: 30.4rem;
}

.page_app .testimonial_author {
    color: #222;
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
    text-align: right;
}

/* 
   Section 9: Free Trial CTA
    */
.page_app .sec_free_trial {
    text-align: center;
}

.page_app .sec_free_trial .trial_description {
    max-width: 90rem;
    margin: 0 auto 6rem;
    text-align: left;
}

.page_app .sec_free_trial .trial_description_text {
    color: #222;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.9;
    margin: 0 0 0.5rem;
}

/* 
   Section 10: Pricing (Red Giza)
    */
.page_app .sec_pricing {
    background: #FFA3A3;
    padding: 0;
}

.sec_pricing .price-plus {
    display: block;
    margin: 0 auto;
}

.page_app .sec_pricing .lesson_giza {
    width: 100%;
    height: 2.1rem;
    background: url('https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/index/kids/giza_red.webp');
    top: -2.1rem;
    position: relative;
}

.page_app .sec_pricing .lesson_giza.lesson_giza_reversal {
    transform: scale(-1);
    top: 2.1rem;
}

.page_app .sec_pricing .section-sub-title {
    text-align: center;
    font-size: 3.2rem;
    color: #222;
    font-weight: bold;
    margin-bottom: 6rem;
}
.page_app .sec_pricing .sec_inner .price_items {
    display: flex;
    justify-content: center;
    column-gap: 6rem;
}

.page_app .sec_pricing .sec_inner .price_items .price_item {
    width: 100%;
    background: #67EEC7;
    border-radius: 3rem;
    padding: 2rem;
}

.page_app .sec_pricing .sec_inner .native_item {
    max-width: 69.6rem;
    width: 100%;
    background: #FFF56A;
    border-radius: 3rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    margin: 6rem auto;
}

.page_app .sec_pricing .sec_inner .price_items .price_item.price_item_family {
    background: #96D2FE;
}

.page_app .sec.sec_pricing .sec_inner .price_items .price_item.price_item_premium .item_plan {
    margin-block: 4.6rem;
}

.page_app .sec_pricing .sec_inner .price_items .price_item .price_inner {
    border: 5px solid #D2FAEE;
    border-radius: 2rem;
    padding: 3.5rem;
}

.page_app .sec_pricing .sec_inner .native_item .native_inner {
    border: 5px solid #FFFCD2;
    border-radius: 2rem;
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.page_app .sec_pricing .sec_inner .price_items .price_item.price_item_family .price_inner {
    border: 5px solid #E0F1FE;
}

.page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .item_title {
    text-align: center;
    color: #FFF56A;
    font-size: 3rem;
    line-height: 3.6rem;
    font-weight: bold;
    background: #222222;
    border-radius: 10rem;
    padding-block: 1.5rem;
    width: 100%;
    margin: 0 auto 3rem;
}

.page_app .sec_pricing .sec_inner .native_item .native_inner .native_title {
    text-align: center;
    color: #FFFFFF;
    font-size: 3rem;
    line-height: 3.6rem;
    font-weight: bold;
    background: #222222;
    border-radius: 10rem;
    padding-block: 1.5rem;
    width: 52rem;
    margin: 0 auto 3rem;
}

.page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .item_plan {
    text-align: center;
    color: #222222;
    font-size: 2.2rem;
    line-height: 3.2rem;
    font-weight: bold;
    margin-bottom: 3rem;
}

.page_app .sec_pricing .sec_inner .native_item .native_inner .native_plan {
    text-align: center;
    color: #222222;
    font-size: 2.2rem;
    line-height: 3.6rem;
    font-weight: bold;
    margin-bottom: 3rem;
}

.page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .item_about {
    text-align: center;
    color: #222222;
    font-family: "M PLUS Rounded 1c";
    font-size: 2rem;
    line-height: 3.2rem;
    font-weight: bold;
}

.page_app .sec_pricing .sec_inner .native_item .native_inner .price_tag {
    background: #FFFFFF;
    border-radius: 2rem;
    width: 32rem;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .price_tag {
    background: #FFFFFF;
    border-radius: 2rem;
    width: 32rem;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 2rem;
}

.page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .price_tag .price_monthly,
.page_app .sec_pricing .sec_inner .native_item .native_inner .price_tag .price_monthly {
    color: #222222;
    font-family: "M PLUS Rounded 1c";
    font-size: 3rem;
    line-height: calc(55 / 30);
    font-weight: bold;
}

.page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .price_tag .price_monthly span,
.page_app .sec_pricing .sec_inner .native_item .native_inner .price_tag .price_monthly span {
    color: #E82246;
    font-size: 6rem;
    line-height: calc(60 / 60);
}

.page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .price_tag .price_tax,
.page_app .sec_pricing .sec_inner .native_item .native_inner .price_tag .price_tax {
    color: #222222;
    font-family: "M PLUS Rounded 1c";
    font-size: 2rem;
    line-height: calc(38 / 20);
    font-weight: bold;
}

.page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .price_tag .price_tax span,
.page_app .sec_pricing .sec_inner .native_item .native_inner .price_tag .price_tax span {
    font-size: 3rem;
    line-height: 3.2rem;
}

.page_app .sec_pricing .sec_inner .plus_text {
    text-align: center;
    color: #222222;
    font-size: 2.6rem;
    font-weight: bold;
    line-height: 3.2rem;
    margin-top: 1rem;
}

.page_app .sec .sec_inner .btn-plan {
    border-radius: 10rem;
    border: 3px solid #7F7FFF;
    background: #FFF;
    display: flex;
    width: 38.6rem;
    height: 5.8rem;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: 2.4rem;
    color: #7F7FFF;
    font-weight: 700;
    margin: 4rem auto 0;
}
.page_app .sec .sec_inner .btn-plan.native-plan {
    width: 53rem;
}
.page_app .sec .sec_inner .btn-plan:hover {
    opacity: 0.8;
}

.page_app .sec .sec_inner .btn-plan span {
    background: #7F7FFF;
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    position: relative;
}

.page_app .sec .sec_inner .btn-plan span::after {
    content: url(https://nativecamp-public-web-production.s3.ap-northeast-1.amazonaws.com/user/webroot/images/index/kids/kids-arrow.webp);
    display: block;
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translate(-50%, -50%);
}

.page_app .sec_pricing .price-btn .btn-plan {
    width: 30.6rem;
}

.page_app .sec_pricing .option-quote {
    display: flex;
    line-height: 2.4rem;
    column-gap: .3rem;
    font-size: 1.8rem;
    font-weight: 500;
    color: #222;
    margin: 1.5rem 0 6rem;
}

/* 
   Section 11: Usage Flow (How to Use)
    */
.page_app .sec_how_to_use {
    position: relative;
}

.page_app .sec_how_to_use .how_to_use_giza {
    width: 100%;
    height: 2.1rem;
    background: url('https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/index/kids/giza_green.webp');
    position: relative;
    top: -2.1rem;
}

.page_app .sec_how_to_use .how_to_use_giza.how_to_use_giza_reversal {
    transform: scale(-1);
    z-index: 1;
    top: 2.1rem;
}

.page_app .sec_how_to_use .how-to-use-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
}

.page_app .sec_how_to_use .how-to-use-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    width: 25rem;
}

.page_app .sec_how_to_use .step-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15rem;
    height: auto;
    background: #2D80E6;
    border-radius: 10rem;
    padding: 0.5rem 0;
}

.page_app .sec_how_to_use .step-badge-text {
    font-family: 'Rounded Mplus 1c Bold', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 3rem;
    color: #FFFFFF;
}

.page_app .sec_how_to_use .step-icon {
    width: 12rem;
    height: auto;
}

.page_app .sec_how_to_use .step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}

.page_app .sec_how_to_use .step-title {
    font-family: 'Rounded Mplus 1c Bold', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 2.8rem;
    color: #222222;
    text-align: center;
    margin: 0;
}

.page_app .sec_how_to_use .how-to-use-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.page_app .sec_how_to_use .how-to-use-arrow img {
    width: 2rem;
    height: 3.5rem;
    margin: 0;
}

.page_app .sec_how_to_use .how-to-use-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 9rem;
}

.page_app .sec_how_to_use .how-to-use-btn .btn_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
}

.page_app .sec_how_to_use .how-to-use-btn .btn_wrap li {
    list-style: none;
}
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 4rem;
    background: #7f7fff;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page_app .flow_step_icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.page_app .flow_step_title {
    color: #222222;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
}

.page_app .flow_step_text {
    color: #666666;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
}

.page_app .flow_arrow {
    color: #7f7fff;
    font-size: 4rem;
    font-weight: 700;
    align-self: center;
    display: none;
}

@media screen and (min-width: 1100px) {
    .page_app .flow_arrow {
        display: block;
    }
}

/* 
   Section 12: FAQ (Yellow Giza)
    */
.page_app .sec_faq {
    position: relative;
    background: #96D2FE;;
}

.page_app .sec_faq .faq_giza.faq_giza_reversal {
    transform: scale(-1);
    top: 2.1rem;
}

.page_app .sec_faq .sec_inner .faq_items {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    align-items: center;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item {
    background: #FFF56A;
    border-radius: 2rem;
    padding: 0;
    box-sizing: border-box;
    width: 96rem;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 4.5rem;
    box-sizing: border-box;
    gap: 3rem;
    cursor: pointer;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_question {
    width: 4rem;
    height: 3.82rem;
    margin: 0;
    flex-shrink: 0;
    background: url("https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/index/kids/icon-search-purple.svg") no-repeat center;
    background-size: contain;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .faq_question_text {
    max-width: 73rem;
    width: 100%;
    color: #222;
    text-align: left;
    font-size: 2.6rem;
    line-height: 3.6rem;
    font-family: "M PLUS Rounded 1c";
    font-weight: bold;
    margin: 0;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_block {
    width: 4rem;
    height: 4rem;
    position: relative;
    background: #7F7FFF;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_block.open {
    transform: rotate(45deg);
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_block::before,
.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_block::after {
    content: "";
    position: absolute;
    width: 2.2rem;
    height: 0.4rem;
    background: #FFF;
    border-radius: 2rem;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_block::after {
    width: 0.4rem;
    height: 2.2rem;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_block.open::before,
.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_block.open::after {
    width: 10px;
    height: 2px;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_block.open::after {
    width: 2px;
    height: 10px;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_answer {
    display: none;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_answer .faq_item_answer_inner {
    align-items: flex-start;
    justify-content: flex-start;
    background: #FFFFFF;
    border-radius: 0 0 1.8rem 1.8rem;
    box-sizing: border-box;
    display: flex;
    height: auto;
    padding: 3rem 5rem 3rem 3.5rem;
    gap: 3rem;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_answer .icon_answer {
    width: 4rem;
    height: 4rem;
    margin: 0;
    flex-shrink: 0;
    background: url('https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/images/index/kids/icon-faq-answer.svg') no-repeat center;
    background-size: contain;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_answer .faq_answer_text {
    max-width: 80rem;
    width: 100%;
    color: #222222;
    text-align: left;
    font-size: 2rem;
    line-height: 3.8rem;
    font-family: "M PLUS Rounded 1c";
    font-weight: 500;
    margin: 0;
}

.page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_answer .faq_answer_text span {
    font-weight: 800;
    color: var(--kids-color-cyan);
}

/* FAQ List Button */
.page_app .sec_faq .sec_inner .btn-faq-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 31.6rem;
    height: 7rem;
    background: #FFFFFF;
    border: 3px solid #7F7FFF;
    border-radius: 10rem;
    margin: 0 auto;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page_app .sec_faq .sec_inner .btn-faq-list:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.page_app .sec_faq .sec_inner .btn-faq-list .btn-faq-text {
    font-family: 'Rounded Mplus 1c Bold', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 3.8rem;
    color: #7F7FFF;
    margin: 0;
}

.page_app .sec_faq .sec_inner .btn-faq-list .btn-faq-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.4rem;
    height: 3.4rem;
}

.page_app .sec_faq .sec_inner .btn-faq-list .btn-faq-arrow svg {
    width: 3.4rem;
    height: 3.4rem;
}

.page_app .page-kids-title {
    color: #FFF56A;
    text-align: center;
    font-size: 5.2rem;
    font-style: normal;
    font-weight: 700;
    line-height: 7rem;
    filter: drop-shadow(3px 0 0 #222) drop-shadow(-1px 0 0 #222) drop-shadow(0 3px 0 #222) drop-shadow(0 -1px 0 #222) drop-shadow(1px 2px 0 #222) drop-shadow(-1px -1px 0 #222) drop-shadow(1px -1px 0 #222) drop-shadow(-1px 1px 0 #222);
    margin-bottom: 6rem;
}

.page_app .page-kids-title_white {
    color: #ffffff;
}

.learning_content_image img {
    width: 40rem;
    height: auto;
    border-radius: 2rem;
}

.page_app .mb-245 {
    margin-bottom: 24.5rem;
}
.page_app .mb-60 {
    margin-bottom: 6rem;
}
.page_app .mt-150 {
    margin-top: 15rem;
}

@media screen and (max-width: 768px) {
    /* Base */
    .page_app .sec .sec_inner {
        padding: 9rem 2rem;
    }

    .page_app .section_title {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }

    .page_app .section_subtitle {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .page_app .section_title--yellow {
        font-size: 2.8rem;
        line-height: 1.4;
        margin-bottom: 3rem;
    }

    .page_app .page-kids-title {
        font-size: 3rem;
        line-height: 4.2rem;
        margin-bottom: 0;
        filter: drop-shadow(3px 0 0 #222) drop-shadow(-1px 0 0 #222) drop-shadow(0 1px 0 #222) drop-shadow(0 -1px 0 #222) drop-shadow(1px 1px 0 #222) drop-shadow(-1px -1px 0 #222) drop-shadow(1px -1px 0 #222) drop-shadow(-1px 1px 0 #222);
        margin-bottom: 3rem;
    }

    .page_app .highlight {
        font-weight: 700;
    }

    /* Giza patterns */
    .page_app .giza {
        height: 1.5rem;
        background-size: auto 1.5rem;
        top: -1.5rem;
    }

    /* Top Section */
    .page_app .sec_top .sec_inner {
    padding-top: 5rem;
    }

    .page_app .top_main_image {
        margin: 3rem auto;
        max-width: 100%;
        padding: 0 1rem;
    }

    .page_app .top_main_image img {
        border-radius: 1.5rem;
    }

    .page_app .top_description {
        padding: 0;
        margin-bottom: 3rem;
    }

    .page_app .top_description_text {
        font-size: 1.6rem;
        line-height: 3rem;
    }

    .page_app .top_cards {
        flex-direction: column;
        gap: 3rem;
        margin: 3rem 0 9rem;
    }

    .page_app .top_card {
        max-width: 100%;
        padding: 1rem;
        border-radius: 2rem;
    }

    .page_app .top_card_inner {
        padding: 2.3rem;
        gap: 2rem;
        border-width: 3px;
        border-radius: 1.5rem;
    }

    .page_app .top_card_title {
        font-size: 2rem;
        padding: .6rem 1.45rem;
        width: 100%;
        border-radius: 5rem;
        line-height: 2.8rem;
    }

    .page_app .top_card_image {
        max-width: 100%;
    }

    .page_app .top_card_image img {
        border-radius: 1.5rem;
    }

    .page_app .top_card_text {
        font-size: 1.5rem;
        line-height: 2.8rem;
        min-height: auto;
    }

    /* Button Styles */
    .page_app .btn_trial {
        max-width: 100%;
        font-size: 1.6rem;
        padding: 1.2rem 1rem;
        box-shadow: 5px 5px 0px #5c5cee;
        border-radius: 5rem;
    }

    .page_app .btn_trial .text_trial span {
        font-size: 2.6rem;
    }

    .page_app .btn_trial .text_trial::before {
        width: 2rem;
        left: 1.5rem;
        height: 2rem;
    }

    .page_app .btn_trial .text_trial::after {
        width: 2rem;
        height: 2rem;
        right: 1.5rem;
    }

    .page_app .learning_description {
        margin: 0 0 3rem;
    }

    .page_app .learning_description--second {
        margin-bottom: 4rem;
    }

    .page_app .learning_description_text {
        font-size: 1.6rem;
        line-height: 3rem;
    }

    .page_app .learning_content_cards {
        gap: 3rem;
    }

    .page_app .learning_content_card {
        flex-direction: column;
        padding: 2.6rem;
        gap: 2rem;
        border-radius: 2rem;
    }

    .page_app .learning_content_image img {
        width: 100%;
        max-width: 30rem;
        height: auto;
        border-radius: 1.5rem;
    }

    .page_app .learning_content_textbox {
        gap: 1.5rem;
    }

    .page_app .learning_content_title {
        text-align: center;
    }

    .page_app .learning_content_title_text {
        font-size: 2rem;
        line-height: 1.4;
    }

    .page_app .learning_content_title_text::after {
        height: 7px;
        bottom: 6px;
    }

    .page_app .learning_content_text {
        font-size: 1.6rem;
        line-height: 3rem;
    }

    /* Daily English Section */
    .page_app .sec_daily_english .sec_inner {
        max-width: 100%;
    }

    .page_app .daily_description {
        margin-bottom: 3rem;
    }

    .page_app .daily_description_text {
        font-size: 1.6rem;
        line-height: 3rem;
        padding: 0;
    }

    .page_app .mb-60 {
        margin-bottom: 3rem;
    }

    .page_app .mb-245 {
        margin-bottom: 9rem;
    }

    .page_app .daily_content_cards {
        flex-direction: column;
        gap: 13.9rem;
        padding: 0;
        margin-top: 13.9rem;
    }

    .page_app .daily_content_card {
        max-width: 100%;
    }

    .page_app .daily_content_image {
        position: absolute;
        top: -12rem;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        max-width: 28rem;
        height: auto;
    }

    .page_app .daily_content_card--green .daily_content_textbox,
    .page_app .daily_content_card--pink .daily_content_textbox {
        padding: 10rem 2rem 2rem;
        border-width: 3px;
        border-radius: 1.5rem;
    }

    .page_app .daily_content_card--green .daily_content_image,
    .page_app .daily_content_card--pink .daily_content_image {
        border-width: 3px;
        border-radius: 1.5rem;
    }

    .page_app .daily_content_title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .page_app .daily_content_card--green .daily_content_title::before,
    .page_app .daily_content_card--pink .daily_content_title::before {
        width: 95%;
        height: .7rem;
    }

    .page_app .daily_content_text {
        font-size: 1.6rem;
        line-height: 3rem;
        margin-bottom: 2rem;
    }

    .page_app .teacher_description {
        margin-bottom: 3rem;
    }

    .page_app .teacher_description_text {
        font-size: 1.6rem;
        line-height: 3rem;
        padding: 0;
    }

    .page_app .teacher_cards {
        flex-direction: column;
        gap: 2rem;
        padding: 0;
    }

    .page_app .teacher_card {
        max-width: 100%;
        padding: 2rem;
        gap: 2rem;
        border-radius: 2rem;
    }

    .page_app .teacher_card_title {
        font-size: 1.8rem;
        padding: 0.8rem 1.5rem;
        line-height: 1.4;
    }

    .page_app .teacher_card_image {
        border-radius: 1.5rem;
    }

    .page_app .teacher_card_text {
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .page_app .sec_individual_pace .pace_description {
        margin-bottom: 3rem;
    }

    .page_app .sec_individual_pace .pace_description_text {
        font-size: 1.6rem;
        line-height: 3rem;
        margin: 0;
    }

    .page_app .pace_cards {
        gap: 2rem;
        margin-bottom: 5rem;
    }

    .page_app .pace_card {
        padding: 1rem;
        border-radius: 2rem;
    }

    .page_app .pace_card_inner {
        flex-direction: column;
        padding: 2.3rem;
        gap: 2rem;
        border-width: 3px;
        border-radius: 1.5rem;
    }

    .page_app .pace_card_image img {
        width: 100%;
        max-width: 100%;
        border-radius: 1.5rem;
    }

    .page_app .pace_card_title {
        font-size: 1.8rem;
        padding: 0.6rem 4.45rem;
        max-width: 100%;
        margin: 0 auto;
    }

    .page_app .pace_card_description {
        font-size: 1.6rem;
        line-height: 3rem;
    }

    .page_app .sec_parent_points .parent_description {
        margin-bottom: 3rem;
    }

    .page_app .sec_parent_points .parent_description_text {
        font-size: 1.6rem;
        line-height: 3rem;
    }

    .page_app .parent_cards {
        flex-direction: column;
        gap: 2rem;
    }

    .page_app .parent_card {
        max-width: 100%;
        padding: 1rem;
        border-radius: 1.5rem;
        background: #fff;
    }

    .page_app .parent_card_inner {
        padding: 2rem;
        gap: 2rem;
        border-width: 3px;
        border-radius: 1.5rem;
    }

    .page_app .parent_card_title {
        font-size: 2rem;
        padding: 0.6rem 2.4rem;
        line-height: 2.8rem;
    }

    .page_app .parent_card_image img {
        width: 100%;
        height: auto;
        border-radius: 1.5rem;
        max-width: 23.9rem;
    }

    .page_app .parent_card_text {
        font-size: 1.6rem;
        line-height: 3rem;
    }

    /* Child Growth Section */
    .page_app .sec_child_growth .sec_inner {
    }

    .page_app .growth_cards {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 9rem;
    }

    .page_app .growth_card {
        max-width: 100%;
        gap: 2rem;
    }

    .page_app .growth_card_title_text {
        font-size: 2rem;
    }

    .page_app .growth_card_title_line {
        height: 0.7rem;
        bottom: 1.2rem;
    }

    .page_app .growth_card_image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 1.5rem;
    }

    .page_app .growth_card_text {
        font-size: 1.6rem;
        line-height: 3rem;
    }

    .page_app .testimonial_cards {
        flex-direction: column;
        gap: 2rem;
    }

    .page_app .testimonial_card {
        max-width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        border-width: 3px;
        border-radius: 1.5rem;
    }

    .page_app .testimonial_profile img {
        width: 10rem;
        height: 10rem;
    }

    .page_app .testimonial_title {
        font-size: 2rem;
    }

    .page_app .testimonial_text {
        font-size: 1.5rem;
        line-height: 2.5rem;
        min-height: auto;
    }

    .page_app .testimonial_author {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }

    /* Free Trial Section */
    .page_app .sec_free_trial .sec_inner {
    }

    .page_app .sec_free_trial .trial_description {
        margin-bottom: 3rem;
    }

    .page_app .sec_free_trial .trial_description_text {
        font-size: 1.6rem;
        line-height: 3rem;
        margin: 0;
    }

    /* Pricing Section */
    .page_app .sec_pricing .sec_inner {
    }

    .page_app .sec_pricing .lesson_giza {
        top: -14px;
        background-size: auto 1.5rem;
    }

    .page_app .sec_pricing .lesson_giza.lesson_giza_reversal {
        top: 1.5rem;
    }

    .page_app .sec_pricing .section-sub-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .page_app .sec_pricing .sec_inner .price_items {
        flex-direction: column;
        gap: 2rem;
    }

    .page_app .sec_pricing .sec_inner .price_items .price_item {
        padding: 1rem;
        border-radius: 2rem;
    }

    .page_app .sec_pricing .sec_inner .price_items .price_item .price_inner {
        border-width: 3px;
        border-radius: 1.5rem;
        padding: 2.3rem;
    }

    .page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .item_title {
        font-size: 2rem;
        line-height: 2.5rem;
        padding: 1rem 1.5rem;
        margin-bottom: 2rem;
    }

    .page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .item_plan {
        font-size: 1.6rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .page_app .sec.sec_pricing .sec_inner .price_items .price_item.price_item_premium .item_plan {
        margin-block: 2rem;
    }

    .page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .price_tag {
        width: 100%;
        max-width: 26rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 1.5rem;
    }

    .page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .price_tag .price_monthly {
        font-size: 2.2rem;
    }

    .page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .price_tag .price_monthly span {
        font-size: 4rem;
    }

    .page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .price_tag .price_tax {
        font-size: 1.4rem;
    }

    .page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .price_tag .price_tax span {
        font-size: 2rem;
    }

    .page_app .sec_pricing .sec_inner .price_items .price_item .price_inner .item_about {
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .page_app .sec .sec_inner .btn-plan {
        width: 100%;
        max-width: 100%;
        height: 4.4rem;
        font-size: 1.6rem;
        border-width: 2px;
        margin-top: 2rem;
    }

    .page_app .sec .sec_inner .btn-plan.native-plan {
        width: 100%;
        max-width: 23rem;
        height: 6.4rem;
    }

    .page_app .sec .sec_inner .btn-plan span {
        width: 2rem;
        height: 2rem;
        background: unset;
    }

    .page_app .sec_pricing .option-quote {
        font-size: 1.2rem;
        line-height: 1.6;
        margin: 1rem 0 3rem;
    }

    .page_app .sec_pricing .plus_text {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .page_app .sec_pricing .sec_inner .native_item {
        padding: 1rem;
        border-radius: 2rem;
        margin: 3rem auto;
    }

    .page_app .sec_pricing .sec_inner .native_item .native_inner {
        border-width: 3px;
        border-radius: 1.5rem;
        padding: 2rem;
    }

    .page_app .sec_pricing .sec_inner .native_item .native_inner .native_title {
        font-size: 1.8rem;
        line-height: 1.4;
        width: 100%;
        padding: 1rem 1.5rem;
        margin-bottom: 2rem;
    }

    .page_app .sec_pricing .sec_inner .native_item .native_inner .native_plan {
        font-size: 1.4rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }

    .page_app .sec_pricing .sec_inner .native_item .native_inner .price_tag {
        width: 100%;
        max-width: 26rem;
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    .page_app .sec_pricing .sec_inner .native_item .native_inner .price_tag .price_monthly {
        font-size: 2.2rem;
    }

    .page_app .sec_pricing .sec_inner .native_item .native_inner .price_tag .price_monthly span {
        font-size: 4rem;
    }

    .page_app .sec_pricing .sec_inner .native_item .native_inner .price_tag .price_tax {
        font-size: 1.4rem;
    }

    .page_app .sec_pricing .sec_inner .native_item .native_inner .price_tag .price_tax span {
        font-size: 2rem;
    }

    .page_app .sec_pricing .price-btn .btn-plan {
        width: 100%;
        max-width: 22rem;
    }

    /* How to Use Section */
    .page_app .sec_how_to_use .sec_inner {
    }

    .page_app .sec_how_to_use .how-to-use-steps {
        gap: 2rem;
        padding-bottom: 9rem;
    }

    .page_app .sec_how_to_use .how-to-use-step {
        width: 100%;
        gap: 1.5rem;
    }

    .page_app .sec_how_to_use .step-badge {
        width: 8rem;
        padding: 0.5rem 0;
    }

    .page_app .sec_how_to_use .step-badge-text {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    .page_app .sec_how_to_use .step-icon {
        width: 6rem;
    }

    .page_app .sec_how_to_use .step-title {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .page_app .sec_how_to_use .how-to-use-arrow img {
        width: 1.5rem;
        height: 2.5rem;
    }

    .page_app .sec_how_to_use .how-to-use-btn {
        padding-top: 3rem;
    }

    .page_app .sec_faq .faq_giza {
        height: 1.5rem;
        background-size: auto 1.5rem;
    }

    .page_app .sec_faq .faq_giza.faq_giza_reversal {
        top: 1.5rem;
    }

    .page_app .sec_faq .sec_inner .faq_items {
        gap: 2rem;
        margin-top: 3rem;
    }

    .page_app .sec_faq .sec_inner .faq_items .faq_item {
        width: 100%;
        border-radius: 1.5rem;
    }

    .page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question {
        padding: 2rem;
        gap: 1.5rem;
    }

    .page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_question {
        width: 2rem;
        height: 1.9rem;
    }

    .page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .faq_question_text {
        font-size: 1.6rem;
        line-height: 2.2rem;
    }

    .page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_block {
        width: 2rem;
        height: 2rem;
    }

    .page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_block::before,
    .page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_block::after {
        width: 10px;
        height: 2px;
    }

    .page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_question .icon_block::after {
        width: 2px;
        height: 10px;
    }

    .page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_answer .faq_item_answer_inner {
        padding: 2rem;
        gap: 1.5rem;
        border-radius: 0 0 1.2rem 1.2rem;
    }

    .page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_answer .icon_answer {
        width: 2.8rem;
        height: 2.8rem;
    }

    .page_app .sec_faq .sec_inner .faq_items .faq_item .faq_item_answer .faq_answer_text {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }

    .page_app .sec_faq .sec_inner .btn-faq-list {
        width: 22rem;
        height: 5rem;
    }

    .page_app .sec_faq .sec_inner .btn-faq-list .btn-faq-text {
        font-size: 1.8rem;
    }

    .page_app .sec_faq .sec_inner .btn-faq-list .btn-faq-arrow {
        width: 2.8rem;
        height: 2.8rem;
    }

    .page_app .btn_trial {
        font-size: 1.7rem;
        padding: 1.4rem 0 1.2rem;
        max-width: unset;
        min-width: unset;
        width: 33.5rem;
        line-height: unset;
        box-shadow: 5px 5px 0 0 #5C5CEE;
        height: unset;
        position: relative;
    }

    .page_app .btn_trial .text_trial {
        font-size: 1.7rem;
        text-shadow: 1px 1px 0 #555;
        position: unset;
        line-height: 1.3;
    }

    .page_app .btn_trial .text_trial span {
        font-size: 2.4rem;
        line-height: calc(55 / 24);
        line-height: unset;
    }

    .page_app .btn_trial .text_trial::before {
        width: 2rem;
        left: 2.2rem;
        content: url('https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/mobile/images/index/kids/stars.svg');
        top: 50%;
        transform: translateY(-50%);
    }

    .page_app .btn_trial .text_trial::after {
        width: 2rem;
        height: 2rem;
        right: 2.2rem;
        content: url('https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/mobile/images/index/kids/btn-arrow-white.svg');
        top: 50%;
        transform: translateY(-50%);
    }
    .page_app .giza.giza_reversal {
        top: unset;
        bottom: -1.5rem;
    }
    .page_app .sec .sec_inner .btn-plan span::after {
        content: url('https://nativecamp-public-web-production.s3-ap-northeast-1.amazonaws.com/user/webroot/mobile/images/index/kids/purple-arrow.svg');
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}