@font-face {
    font-family: 'Cubic 11';
    src: url('../Cubic_11.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    width: 100vw;
    height: calc(100vh - var(--navbar-height));
    background-image: url('../img/index_bc.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--navbar-height);
}

.hero-date{
    font-family: Noto Sans TC;
font-weight: 500;
font-size: 18px;
line-height: 100%;
letter-spacing: 10%;
text-align: center;
vertical-align: middle;
color: white;
}

.hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 10;
}

.hero-deco-left {
    top: 0;
    left: 0;
    width: 10%;
}

.hero-deco-left2 {
    top: 40px;
    left: 0;
    width: 10%;
}

.hero-deco-right {
    bottom: 0;
    right: 0;
    width: 8%;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.hero-title {
    max-width: 38%;
    height: auto;
}

.hero-subtitle {
    font-family: 'Cubic 11', sans-serif;
    font-weight: 400;
    font-size: 28px;
    line-height: 48px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #9AEEFF;
    max-width: 80vw;
}

.hero-btn {
    background: linear-gradient(90deg, #9AEEFF 0%, #4FBFD5 49.04%, #74D6EA 100%);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-family: 'Noto Sans TC', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0.12em;
    text-align: center;
    color: white;
    padding: 0.7rem 3.2rem;
    border-radius: 66px;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
}

.hero-btn:hover {
    transform: scale(1.05);
}

/* 131708318 */

/* Reset default margin and padding */
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Problem Section Styles */
.problem-section {
    background-image: url('../img/section2_bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 0;
    position: relative;
    text-align: center;
    width: 100vw;
    height: calc(100vh - var(--navbar-height));
    display: flex;
    align-items: center;
}

.custom-container {
    width: 65vw;
    margin: 0 auto;
    padding: 0 15px;
}

.title-wrapper {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 60px;
}

.section-icon {
    width: 48px;
    height: auto;
    margin-bottom: 24px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: 'Cubic 11';
    font-weight: 400;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 0.02em;
    text-align: center;
    color: #9AEEFF;
}

.problem-img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.problem-img:hover {
    transform: translateY(-10px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .custom-container {
        width: 90vw;
    }

    .title-wrapper {
        width: 85%;
    }
}

@media (max-width: 767.98px) {
    .custom-container {
        width: 100vw;
        padding: 40px 10px;
    }

    .title-wrapper {
        width: 100%;
    }
    
    .problem-section {
        height: auto;
        min-height: calc(100vh - var(--navbar-height));
    }
}

@media (max-width: 575.98px) {
    
    .section-icon {
        width: 48px;
        margin-bottom: 16px;
    }
}

/* Features Section Styles */
.features-section {
    position: relative;
    width: 100vw;
    min-height: calc(100vh - var(--navbar-height));
    padding: 100px 0;
    overflow: hidden;
    background-image: url('../img/Section3_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.features-section .custom-container {
    position: relative;
    z-index: 1;
}

.features-section .title-wrapper {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 60px;
    text-align: center;
}

.features-section .section-icon {
    width: 52px;
    height: auto;
    margin-bottom: 24px;
}

.features-section .section-title {
    font-family: 'Cubic 11';
    font-weight: 400;
    font-size: 36px;
    line-height: 32px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #232323;
    margin-bottom: 16px;
}

.features-section .section-subtitle {
    font-family: 'Noto Sans TC';
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #232323;
    margin: 0;
}

.content-image {
    max-width: 90%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-content-img {
    max-width: 100%;
    height: auto;
}

.mobile-images {
    display: none;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.mobile-content-img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    margin-top: 20px;
}

.mobile-content-img:hover {
    transform: translateY(-5px);
}

/* Desktop styles */
@media (min-width: 1400px) {
    .desktop-only {
        display: block;
    }
    .mobile-images {
        display: none;
    }
}

/* Mobile styles */
@media (max-width: 1399.98px) {
    .desktop-only {
        display: none;
    }
    .mobile-images {
        display: flex;
    }
    
    .features-section {
        padding: 30px 0;
    }

    .features-section .title-wrapper {
        width: 100%;
        margin-bottom: 40px;
    }

    .content-image {
        max-width: 95%;
    }
}

/* Specs Section Styles */
.specs-section {
    position: relative;
    width: 100vw;
    min-height: calc(100vh - var(--navbar-height));
    padding: 100px 0;
    overflow: hidden;
    background-image: url('../img/Section4_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.specs-section .custom-container {
    position: relative;
    z-index: 1;
}

.specs-section .section-title {
    font-family: 'Cubic 11';
    font-weight: 400;
    font-size: 36px;
    line-height: 36px;
    letter-spacing: 0.02em;
    text-align: center;
    color:white;
    margin-bottom: 16px;
}

.specs-section .section-subtitle {
    font-family: 'Noto Sans TC';
    font-weight: 700;
    font-size: 18px;
    line-height: 15px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #9AEEFF;
    margin: 0;
}

.specs-content {
    margin-top: 40px;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.specs-content .split-images img.mobile-img {
    display: none;
    width: 100%;
    margin-top: 20px;
}

.specs-content .split-images img.desktop-img {
    display: block;
    width: 90%;
}

@media screen and (max-width: 1399.98px) {
    .specs-content {
        width: 100%;
    }

    .specs-content .split-images img.desktop-img {
        display: none;
    }

    .specs-content .split-images img.mobile-img {
        display: block;
        width: 100%;
    }
}

.full-width-images .image-wrapper {
    transition: transform 0.3s ease;
    position: relative;
}

.full-width-images .mobile-img {
    display: none;
}

.full-width-images .desktop-img {
    display: block;
}

@media screen and (max-width: 1399.98px) {
    .full-width-images .desktop-img {
        display: none;
    }
    
    .full-width-images .mobile-img {
        display: block;
    }
}

.split-images img {
    transition: transform 0.3s ease;
}

.split-images img:hover {
    transform: translateY(-10px);
}

/* Responsive adjustments for specs section */
@media (max-width: 991.98px) {
    .specs-section {
        padding: 40px 0;
    }
}

@media (max-width: 767.98px) {
    .specs-section {
        padding: 30px 0;
    }

    .specs-section .section-subtitle {
        font-size: 16px;
        line-height: 32px;
    }

    .specs-content {
        margin-top: 30px;
        width: 90%;
    }
}

@media (max-width: 575.98px) {

    .specs-section .section-subtitle {
        font-size: 14px;
        line-height: 28px;
    }
}

/* Value Section Styles */
.value-section {
    position: relative;
    width: 100vw;
    min-height: calc(100vh - var(--navbar-height));
    padding: 100px 0;
    overflow: hidden;
    background-image: url('../img/section5_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.value-section .custom-container {
    position: relative;
    z-index: 1;
}

.value-section .section-title {
    font-family: 'Cubic 11';
    font-weight: 400;
    font-size: 36px;
    line-height: 32px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #232323;
    margin-bottom: 16px;
}

.value-section .section-subtitle {
    font-family: 'Noto Sans TC';
    font-weight: 700;
    font-size: 18px;
    line-height: 15px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #232323;
    margin: 0;
}

.value-content {
    margin-top: 40px;
    text-align: center;
}

.value-content .mobile-img {
    display: none;
}

.value-content .desktop-img {
    display: block;
}

.value-content img {
    max-width: 100%;
    height: auto;
}

/* Responsive adjustments for value section */
@media (max-width: 991.98px) {
    .value-section {
        padding: 40px 0;
    }
}

@media (max-width: 767.98px) {
    .value-section {
        padding: 30px 0;
    }



    .value-section .section-subtitle {
        font-size: 16px;
        line-height: 32px;
    }

    .value-content {
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {


    .value-section .section-subtitle {
        font-size: 14px;
        line-height: 28px;
    }
}

@media (max-width: 1399.98px) {
    .value-content .desktop-img {
        display: none;
    }
    
    .value-content .mobile-img {
        display: block;
    }
}

/* Schedule Section Styles */
.schedule-section {
    position: relative;
    width: 100vw;
    min-height: calc(100vh - var(--navbar-height));
    padding: 100px 0;
    overflow: hidden;
    background-image: url('../img/section6/section6_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.schedule-section .custom-container {
    position: relative;
    z-index: 1;
}

.schedule-section .section-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.schedule-section .section-icon {
    width: 52px;
    height: auto;
    flex-shrink: 0;
}

.schedule-section .header-text {
    flex-grow: 1;
}

.schedule-section .section-title {
    font-family: 'Cubic 11';
    font-weight: 400;
    font-size: 36px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: white;
    margin-bottom: 8px;
    text-align: start;
}

.schedule-section .section-subtitle {
    font-family: 'Noto Sans TC';
    font-weight: 700;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.05em;
    color: #9AEEFF;
    margin: 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
}

.schedule-item {
    width: 100%;
}

.schedule-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.schedule-item img:hover {
    transform: translateY(-5px);
}

/* Responsive adjustments for schedule section */
@media (max-width: 991.98px) {
    .schedule-section {
        padding: 40px 0;
    }

    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767.98px) {
    .schedule-section {
        padding: 30px 0;
    }

    .schedule-section .section-subtitle {
        font-size: 16px;
        line-height: 32px;
    }

    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 575.98px) {

    .schedule-section .section-subtitle {
        font-size: 14px;
        line-height: 28px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0px;
    }
}

/* Instructor Section Styles */
.instructor-section {
    position: relative;
    width: 100vw;
    min-height: calc(100vh - var(--navbar-height));
    padding: 100px 0;
    overflow: hidden;
    background-image: url('../img/section7/section7_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.instructor-section .custom-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.instructor-section .section-title {
    font-family: 'Cubic 11';
    font-weight: 400;
    font-size: 36px;
    line-height: 32px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #232323;
}

.instructor-section .section-subtitle {
    font-family: 'Noto Sans TC';
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.05em;
    text-align: center;
    color: #232323;
    margin: 0;
}

.instructor-section .title-wrapper {
    margin-bottom: 0;
}

.instructor-grid{
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 768px) {
    .instructor-grid{
        width: 100%;
    }   
}

.instructor-section .instructor-grid img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    margin: 0 auto;
    display: block;
}

.instructor-grid img {
    transition: transform 0.3s ease;
}

.instructor-grid img:hover {
    transform: translateY(-10px);
}

/* Responsive adjustments for instructor section */
@media (max-width: 991.98px) {
    .instructor-section {
        padding: 40px 0;
    }
}

@media (max-width: 767.98px) {

    .hero-title{
        max-width: 85%;
    height: auto;
    }
    .instructor-section {
        padding: 30px 0;
        height: auto;
    }

    .instructor-section .section-subtitle {
        font-size: 16px;
        line-height: 32px;
    }

    .instructor-grid {
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {

    .instructor-section .section-subtitle {
        font-size: 14px;
        line-height: 28px;
    }
}

/* Testimonial Section Styles */
.testimonial-section {
    position: relative;
    width: 100vw;
    padding: 100px 0;
    overflow: hidden;
    background-image: url('../img/section8/section8_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

.testimonial-section .custom-container {
    position: relative;
    z-index: 1;
}

.testimonial-section .section-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-section .section-icon {
    width: 52px;
    height: auto;
    flex-shrink: 0;
    margin-top: 15px;
}

.testimonial-section .header-text {
    flex-grow: 1;
}

.testimonial-section .section-title {
    font-family: 'Cubic 11';
    font-weight: 400;
    font-size: 36px;
    line-height: 32px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-align: left;
}

.testimonial-section .section-subtitle {
    font-family: 'Noto Sans TC';
    font-weight: 700;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.05em;
    color: #9AEEFF;
    margin: 0;
    text-align: left;
}

.testimonial-content {
    margin-top: 40px;
}

.testimonial-content .mobile-img {
    display: none;
}

.testimonial-content .desktop-img {
    display: block;
}

.testimonial-content img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

/* Responsive adjustments for testimonial section */
@media (max-width: 991.98px) {
    .testimonial-section {
        padding: 40px 0;
    }
}

@media (max-width: 767.98px) {
    .testimonial-section {
        padding: 30px 0;
    }

    .testimonial-section .section-subtitle {
        font-size: 16px;
        line-height: 32px;
    }

    .testimonial-content {
        margin-top: 30px;
    }
}

@media (max-width: 575.98px) {


    .testimonial-section .section-subtitle {
        font-size: 14px;
        line-height: 28px;
    }
}

@media (max-width: 1399.98px) {
    .testimonial-content .desktop-img {
        display: none;
    }
    
    .testimonial-content .mobile-img {
        display: block;
    }
}

/* Modal Styles */
.modal-content {
    background: rgba(14, 23, 38, 0.95);
    border: 1px solid #9AEEFF;
    border-radius: 20px;
    color: white;
}

.modal-header {
    border-bottom: 1px solid rgba(154, 238, 255, 0.2);
    padding: 1.5rem;
}

.modal-title {
    font-family: 'Cubic 11';
    color: #9AEEFF;
    font-size: 28px;
}

.btn-close {
    background-color: #9AEEFF;
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
    background-color: #9AEEFF;
}

.modal-body {
    padding: 2rem;
}

.day-content h3 {
    color: #9AEEFF;
    font-family: 'Noto Sans TC';
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 24px;
}

.day-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.day-content li {
    font-family: 'Noto Sans TC';
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.day-content li::before {
    content: "•";
    color: #9AEEFF;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

/* Hover effect for schedule images */
.schedule-day {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.schedule-day:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

@media (max-width: 767.98px) {
    .modal-dialog {
        margin: 1rem;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .day-content h3 {
        font-size: 20px;
    }
    
    .day-content li {
        font-size: 16px;
    }
}

/* Subtitle Modal Styles */
.schedule-subtitle {
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.schedule-subtitle:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
}

.subtitle-content {
    color: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.overview-item, .overview-features {
    background: rgba(154, 238, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(154, 238, 255, 0.2);
}

.subtitle-content h3 {
    color: #9AEEFF;
    font-family: 'Cubic 11';
    font-size: 28px;
    margin-bottom: 2rem;
    text-align: center;
}

.subtitle-content h4 {
    color: #9AEEFF;
    font-family: 'Noto Sans TC';
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 1rem;
}

.subtitle-content p {
    font-family: 'Noto Sans TC';
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.overview-features ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.overview-features li {
    font-family: 'Noto Sans TC';
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.overview-features li::before {
    content: "✦";
    color: #9AEEFF;
    position: absolute;
    left: 0;
}

@media (max-width: 767.98px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .subtitle-content h3 {
        font-size: 24px;
        margin-bottom: 1.5rem;
    }
    
    .subtitle-content h4 {
        font-size: 18px;
    }
    
    .subtitle-content p,
    .overview-features li {
        font-size: 14px;
    }
    
    .overview-item, .overview-features {
        padding: 1rem;
    }
}


.modal {
    z-index: 9999;
}

.modal-backdrop {
    z-index: 9998;
}

.modal-dialog {
    max-height: 90vh;
    overflow-y: auto;
}

.day-content {
    padding: 20px;
}

.day-content h3 {
    color: #333;
    margin-bottom: 20px;
}

.day-content p {
    white-space: pre-line;
    line-height: 1.6;
}

.day-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.day-content li {
    margin-bottom: 8px;
}

.preview-section {
    margin-bottom: 30px;
}

.preview-section h4 {
    color: #444;
    margin-bottom: 15px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Default padding for navbar height */
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

body {
    padding-top: 80px;
    /* Add padding to body to compensate for fixed navbar */
}

/* Section anchor points */
.problem-section,
.features-section,
.specs-section,
.value-section,
.schedule-section,
.instructor-section,
.testimonial-section {
    scroll-margin-top: 80px;
    /* Ensures section starts below navbar */
}

@media (max-width: 1399.98px) {
    html {
        scroll-padding-top: 60px;
    }

    body {
        padding-top: 60px;
    }

    .problem-section,
    .features-section,
    .specs-section,
    .value-section,
    .schedule-section,
    .instructor-section,
    .testimonial-section {
        scroll-margin-top: 60px;
    }
}

/* Decoration Images Styling */
.hero-section {
    position: relative;
    overflow: visible;
    /* 允許內容溢出 */
}

.hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 10;
}

.hero-deco-right {
    right: 0;
    bottom: -200px;
    height: 80%;
    width: auto;
    object-fit: contain;
    z-index: 1;
}

.hero-deco-right2 {
    right: 0;
    top: 80px;
    height: 20%;
    width: auto;
    object-fit: contain;
    z-index: 1;
}

.hero-deco-right3 {
    right: 0;
    top: 20px;
    height: 20%;
    width: auto;
    object-fit: contain;
    z-index: 10;
    position: absolute;
}

@media (max-width: 1399.98px) {
    .hero-deco {
        display: block;
        width: auto;
        height: auto;
        max-width: 15%;
    }
    
    .hero-deco-right3 {
        top: -100px;
        height: 15%;
        right: 0;
    }
}

@media (max-width: 768px) {
    .hero-deco {
        max-width: 20%;
    }
    
    .hero-deco-right3 {
        top: -80px;
        height: 12%;
    }
}

/* Desktop image */
.section-content-img {
    width: 95%;
    height: auto;
    content: url('../img/Section3_content.png');
}

/* Mobile image switch */
@media (max-width: 1399.98px) {
    .section-content-img {
        content: url('./img/mobile_1.jpg');
    }
}

/* Schedule Grid Layout */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.schedule-item {
    width: 100%;
    transition: transform 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-5px);
}

/* Mobile Layout */
@media (max-width: 1399.98px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }
}



/* Instructor Section Styling */
.instructor-section {
    position: relative;
    overflow: hidden;
}

.instructor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 123, 255, 0) 100%);
    pointer-events: none;
}

.instructor-grid .row {
    margin: 0 -15px;
}

.instructor-grid .col-12 {
    padding: 15px 0px;
}

@media (max-width: 1399.98px) {
    .instructor-section {
        background:
            linear-gradient(45deg, rgba(0, 123, 255, 0.03) 25%, transparent 25%) -50px 0,
            linear-gradient(-45deg, rgba(0, 123, 255, 0.03) 25%, transparent 25%) -50px 0,
            linear-gradient(45deg, transparent 75%, rgba(0, 123, 255, 0.03) 75%),
            linear-gradient(-45deg, transparent 75%, rgba(0, 123, 255, 0.03) 75%);
        background-size: 100px 100px;
    }

    .instructor-grid .col-12 {
        padding: 10px 15px;
    }
}

/* Tablet Layout */
@media (min-width: 768px) and (max-width: 1399.98px) {
    .schedule-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .schedule-grid {
        padding: 0px;
    }
}

@media screen and (max-width: 768px) {
    .schedule-section .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .schedule-section .section-icon {
        width: 40px;
        margin-bottom: 8px;
    }

    .schedule-section .header-text {
        width: 100%;
        text-align: center;
    }

    .schedule-section .section-subtitle {
        font-size: 16px;
        line-height: 28px;
        text-align: center;
    }
}

.testimonial-section .section-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-section .section-icon {
    width: 52px;
    height: auto;
    flex-shrink: 0;
}

.testimonial-section .header-text {
    flex-grow: 1;
}

.testimonial-section .section-title {
    font-family: 'Cubic 11';
    font-weight: 400;
    font-size: 48px;
    line-height: 72px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-align: left;
}

.testimonial-section .section-subtitle {
    font-family: 'Noto Sans TC';
    font-weight: 700;
    font-size: 18px;
    line-height: 36px;
    letter-spacing: 0.05em;
    color: #9AEEFF;
    margin: 0;
    text-align: left;
}

@media screen and (max-width: 768px) {
    .testimonial-section .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }

    .testimonial-section .section-icon {
        width: 40px;
        margin-bottom: 8px;
    }

    .testimonial-section .header-text {
        width: 100%;
        text-align: center;
    }

    .testimonial-section .section-subtitle {
        font-size: 16px;
        line-height: 28px;
        text-align: center;
    }

    
    .section-title {
        font-size: 28px !important;
        line-height: 42px !important;
        text-align: center !important;
    }
}