:root {
            --jcb-primary-color: #de3163;
            --jcb-secondary-color: #de3163;
            --jcb-accent-color: #de3163;
            --jcb-text-color: #333;
            --jcb-light-text: #666;
            --jcb-white: #fff;
            --jcb-light-bg: #FFFAFA;
            --jcb-dark-bg: #2C3E50;
            --jcb-transition: all 0.3s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
           /* font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--jcb-text-color);
            background-color: var(--jcb-light-bg);*/
            overflow-x: hidden;
        }
        
        .jcb-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            margin-bottom: 18px;
        }
        
        /* Hero Section with Parallax */
        .jcb-hero-section {
            position: relative;
            height: 100vh;
            min-height: 600px;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://picsum.photos/seed/japancherryblossom/1920/1080.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--jcb-white);
            overflow: hidden;
        }
        
        .jcb-hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://picsum.photos/seed/cherrypetals/200/200.jpg');
            background-size: 300px;
            opacity: 0.1;
            animation: jcb-float 20s infinite linear;
        }
        
        @keyframes jcb-float {
            0% { transform: translateX(0) translateY(0) rotate(0deg); }
            50% { transform: translateX(-50px) translateY(-50px) rotate(180deg); }
            100% { transform: translateX(0) translateY(0) rotate(360deg); }
        }
        
        .jcb-hero-content {
            position: relative;
            z-index: 1;
            padding: 2rem;
            max-width: 800px;
            animation: jcb-fadeInUp 1s ease;
        }
        
        .jcb-hero-title {
            font-size: 4rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            font-family: 'Playfair Display', serif;
        }
        
        .jcb-hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            text-align: center;
            color: #fff;
        }
        
        .jcb-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--jcb-accent-color);
            color: var(--jcb-white);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--jcb-transition);
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
        }
        
        .jcb-btn:hover {
            background-color: #FF1493;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 105, 180, 0.4);
        }
        
        .jcb-btn-outline {
            background-color: transparent;
            border: 2px solid var(--jcb-white);
            margin-left: 15px;
        }
        
        .jcb-btn-outline:hover {
            background-color: var(--jcb-white);
            color: var(--jcb-accent-color);
        }
        
        /* Section Styling */
        .jcb-section {
            padding: 80px 0;
        }
        
        .jcb-section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .jcb-section-heading {
            font-size: 3rem;
            color: var(--jcb-text-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
            text-align: center;
        }
        
        .jcb-section-heading::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--jcb-accent-color);
        }
        
        .jcb-section-description {
            font-size: 1.1rem;
            color: var(--jcb-light-text);
            max-width: 700px;
            margin: 20px auto 0;
            text-align: center;
        }
        
        /* Overview Section */
        .jcb-overview-section {
            background-color: var(--jcb-white);
        }
        
        .jcb-overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .jcb-overview-text {
            animation: jcb-fadeInLeft 1s ease;
        }
        
        .jcb-overview-title {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--jcb-accent-color);
        }
        
        .jcb-overview-paragraph {
            margin-bottom: 20px;
            color: var(--jcb-light-text);
        }
        
        .jcb-features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 30px;
        }
        
        .jcb-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .jcb-feature-item i {
            color: var(--jcb-accent-color);
            font-size: 1.2rem;
        }
        
        .jcb-overview-image {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            animation: jcb-fadeInRight 1s ease;
        }
        
        .jcb-overview-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--jcb-transition);
        }
        
        .jcb-overview-image:hover img {
            transform: scale(1.05);
        }
        
        /* Parallax Text Section */
        .jcb-parallax-section {
            position: relative;
            height: 400px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/tour1.2.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--jcb-white);
        }
        
        .jcb-parallax-content {
            max-width: 800px;
            padding: 0 20px;
        }
        
        .jcb-parallax-title {
            font-size: 3rem;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }
        
        .jcb-parallax-text {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #fff;
            text-align: center;
        }
        
        /* Itinerary Section */
        .jcb-itinerary-section {
            background-color: var(--jcb-light-bg);
        }
        
        .jcb-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .jcb-timeline::after {
            content: "";
            position: absolute;
            width: 4px;
            background-color: var(--jcb-secondary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .jcb-timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }
        
        .jcb-timeline-item.jcb-show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .jcb-timeline-item::after {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: var(--jcb-white);
            border: 4px solid var(--jcb-accent-color);
            top: 20px;
            border-radius: 50%;
            z-index: 1;
            transition: var(--jcb-transition);
        }
        
        .jcb-timeline-item:hover::after {
            background-color: var(--jcb-accent-color);
        }
        
        .jcb-timeline-left {
            left: 0;
        }
        
        .jcb-timeline-right {
            left: 50%;
        }
        
        .jcb-timeline-left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid var(--jcb-secondary-color);
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent var(--jcb-secondary-color);
        }
        
        .jcb-timeline-right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid var(--jcb-secondary-color);
            border-width: 10px 10px 10px 0;
            border-color: transparent var(--jcb-secondary-color) transparent transparent;
        }
        
        .jcb-timeline-right::after {
            left: -10px;
        }
        
        .jcb-timeline-content {
            padding: 20px 30px;
            background-color: var(--jcb-white);
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--jcb-transition);
        }
        
        .jcb-timeline-content:hover {
            box-shadow: 0 10px 25px rgba(255, 105, 180, 0.2);
            transform: translateY(-5px);
        }
        
        .jcb-timeline-day {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--jcb-accent-color);
        }
        
        .jcb-timeline-location {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--jcb-text-color);
        }
        
        .jcb-timeline-description {
            color: var(--jcb-light-text);
            margin-bottom: 15px;
        }
        
        .jcb-timeline-list {
            padding-left: 20px;
            color: var(--jcb-light-text);
        }
        
        .jcb-timeline-list li {
            margin-bottom: 8px;
        }
        
        /* Pricing Section */
        .jcb-pricing-section {
            background-color: var(--jcb-light-bg);
        }
        
        .jcb-pricing-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
        }
        
        .jcb-pricing-card {
            background-color: var(--jcb-white);
            border-radius: 15px;
            overflow: hidden;
            width: 300px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--jcb-transition);
            position: relative;
        }
        
        .jcb-pricing-card.jcb-featured {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 105, 180, 0.3);
        }
        
        .jcb-pricing-card.jcb-featured::before {
            content: "Most Popular";
            position: absolute;
            top: 20px;
            right: -30px;
            background-color: var(--jcb-accent-color);
            color: var(--jcb-white);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .jcb-pricing-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .jcb-pricing-card.jcb-featured:hover {
            transform: scale(1.05) translateY(-15px);
        }
        
        .jcb-pricing-header {
            background-color: var(--jcb-primary-color);
            padding: 30px 20px;
            text-align: center;
            color: var(--jcb-white);
        }
        
        .jcb-pricing-card.jcb-featured .jcb-pricing-header {
            background-color: var(--jcb-accent-color);
        }
        
        .jcb-pricing-plan {
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .jcb-pricing-subtitle {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .jcb-pricing-amount {
            padding: 30px 20px;
            text-align: center;
            border-bottom: 1px solid var(--jcb-light-bg);
        }
        
        .jcb-price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--jcb-accent-color);
        }
        
        .jcb-price-note {
            font-size: 1rem;
            color: var(--jcb-light-text);
            margin-top: 5px;
        }
        
        .jcb-pricing-features {
            padding: 30px 20px;
        }
        
        .jcb-features-list {
            list-style: none;
        }
        
        .jcb-features-list li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--jcb-light-text);
        }
        
        .jcb-features-list li i {
            color: var(--jcb-accent-color);
        }
        
        .jcb-pricing-footer {
            padding: 20px;
            text-align: center;
        }
        
        .jcb-pricing-footer .jcb-btn {
            width: 100%;
        }
        
        /* Booking Section */
        .jcb-booking-section {
            background-color: var(--jcb-white);
        }
        
        .jcb-booking-form {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--jcb-light-bg);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .jcb-form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .jcb-form-group {
            margin-bottom: 20px;
        }
        
        .jcb-form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--jcb-text-color);
        }
        
        .jcb-form-input,
        .jcb-form-select,
        .jcb-form-textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--jcb-transition);
        }
        
        .jcb-form-input:focus,
        .jcb-form-select:focus,
        .jcb-form-textarea:focus {
            outline: none;
            border-color: var(--jcb-accent-color);
            box-shadow: 0 0 0 3px rgba(255, 105, 180, 0.1);
        }
        
        .jcb-form-textarea {
            resize: vertical;
            min-height: 120px;
        }
        
        .jcb-form-submit {
            text-align: center;
            margin-top: 30px;
        }
        
        .jcb-form-submit .jcb-btn {
            padding: 15px 40px;
            font-size: 1.1rem;
        }
        
        /* FAQ Section */
        .jcb-faq-section {
            background-color: var(--jcb-light-bg);
        }
        
        .jcb-faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .jcb-faq-item {
            margin-bottom: 20px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--jcb-transition);
        }
        
        .jcb-faq-item:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .jcb-faq-question {
            padding: 20px 25px;
            background-color: var(--jcb-white);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--jcb-transition);
        }
        
        .jcb-faq-question:hover {
            background-color: var(--jcb-secondary-color);
        }
        
        .jcb-faq-question h3 {
            font-size: 1.2rem;
            color: var(--jcb-text-color);
        }
        
        .jcb-faq-question i {
            color: var(--jcb-accent-color);
            transition: var(--jcb-transition);
        }
        
        .jcb-faq-item.jcb-active .jcb-faq-question i {
            transform: rotate(180deg);
        }
        
        .jcb-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .jcb-faq-item.jcb-active .jcb-faq-answer {
            max-height: 500px;
        }
        
        .jcb-faq-answer-content {
            padding: 0 25px 20px;
            color: var(--jcb-light-text);
        }
        
        /* Footer */
        .jcb-footer {
            background-color: var(--jcb-primary-color);
            color: #fff;
            padding: 8px 0 8px;
            bottom: 0;
            position: fixed;
            width: 100%;
            margin-top: 48px;
        }
        .jcb-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 28px;
        }
        
        .jcb-footer-column h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--jcb-primary-color);
        }
        
        .jcb-footer p {
            margin-bottom: 15px;
            color: #fff;
            text-align: center;
            padding-top: 18px;
        }
        
        .jcb-footer-column ul {
            list-style: none;
        }
        
        .jcb-footer-column ul li {
            margin-bottom: 10px;
        }
        
        .jcb-footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--jcb-transition);
        }
        
        .jcb-footer-column ul li a:hover {
            color: var(--jcb-primary-color);
            padding-left: 5px;
        }
        
        .jcb-social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .jcb-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--jcb-white);
            border-radius: 50%;
            transition: var(--jcb-transition);
        }
        
        .jcb-social-links a:hover {
            background-color: var(--jcb-primary-color);
            transform: translateY(-5px);
        }
        
        .jcb-footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }
        .jcb-footer-bottom > p{
            color: #fff;
            text-align: center; 
        }
        
        /* Animations */
        @keyframes jcb-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes jcb-fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes jcb-fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Responsive Design */
        @media screen and (max-width: 992px) {
            .jcb-hero-title {
                font-size: 3rem;
            }
            
            .jcb-overview-content {
                grid-template-columns: 1fr;
            }
            
            .jcb-timeline::after {
                left: 31px;
            }
            
            .jcb-timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .jcb-timeline-item::before {
                left: 60px;
                border: medium solid var(--jcb-secondary-color);
                border-width: 10px 10px 10px 0;
                border-color: transparent var(--jcb-secondary-color) transparent transparent;
            }
            
            .jcb-timeline-left::after, .jcb-timeline-right::after {
                left: 21px;
            }
            
            .jcb-timeline-left {
                left: 0%;
            }
            
            .jcb-timeline-right {
                left: 0%;
            }
            
            .jcb-form-row {
                grid-template-columns: 1fr;
            }
        }
        
        @media screen and (max-width: 768px) {
            .jcb-hero-title {
                font-size: 2.5rem;
            }
            
            .jcb-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .jcb-section-heading {
                font-size: 2.5rem;
            }
            
            .jcb-pricing-card.jcb-featured {
                transform: none;
            }
            
            .jcb-footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media screen and (max-width: 576px) {
            .jcb-hero-section {
                height: 80vh;
                min-height: 500px;
            }
            
            .jcb-hero-title {
                font-size: 2rem;
            }
            
            .jcb-section {
                padding: 50px 0;
            }
            
            .jcb-section-heading {
                font-size: 2rem;
            }
            
            .jcb-features-grid {
                grid-template-columns: 1fr;
            }
            
            .jcb-btn-outline {
                display: block;
                margin-left: 0;
                margin-top: 15px;
            }
        }

        .sakura2024-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Section Styling */
        .sakura2024-section {
            padding: 80px 0;
        }
        
        .sakura2024-section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .sakura2024-section-heading {
            font-size: 3rem;
            color: var(--sakura2024-text-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-family: 'Playfair Display', serif;
        }
        
        .sakura2024-section-heading::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--sakura2024-accent-color);
        }
        
        .sakura2024-section-description {
            font-size: 1.1rem;
            color: var(--sakura2024-light-text);
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        /* Overview Section */
        .sakura2024-overview-section {
            background-color: var(--sakura2024-white);
        }
        
        .sakura2024-overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        
        .sakura2024-overview-text {
            animation: sakura2024-fadeInLeft 1s ease;
        }
        
        .sakura2024-overview-title {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--sakura2024-accent-color);
        }
        
        .sakura2024-overview-paragraph {
            margin-bottom: 20px;
            color: var(--sakura2024-light-text);
        }
        
        .sakura2024-features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 30px;
        }
        
        .sakura2024-feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px;
            border-radius: 8px;
            transition: var(--sakura2024-transition);
        }
        
        .sakura2024-feature-item:hover {
            background-color: var(--sakura2024-secondary-color);
            transform: translateX(5px);
        }
        
        .sakura2024-feature-item i {
            color: var(--sakura2024-accent-color);
            font-size: 1.2rem;
        }
        
        .sakura2024-overview-image {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            animation: sakura2024-fadeInRight 1s ease;
        }
        
        .sakura2024-overview-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--sakura2024-transition);
        }
        
        .sakura2024-overview-image:hover img {
            transform: scale(1.05);
        }
        
        .sakura2024-overview-image::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 105, 180, 0.2), rgba(255, 183, 197, 0.2));
            opacity: 0;
            transition: var(--sakura2024-transition);
        }
        
        .sakura2024-overview-image:hover::after {
            opacity: 1;
        }
        
        /* Highlights Section */
        .sakura2024-highlights-section {
            background-color: var(--sakura2024-light-bg);
        }
        
        .sakura2024-highlights-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .sakura2024-highlight-item {
            position: relative;
            background-color: var(--sakura2024-white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            transition: var(--sakura2024-transition);
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .sakura2024-highlight-item.sakura2024-show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .sakura2024-highlight-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--sakura2024-primary-color), var(--sakura2024-accent-color));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }
        
        .sakura2024-highlight-item:hover::before {
            transform: scaleX(1);
        }
        
        .sakura2024-highlight-item:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(255, 105, 180, 0.3);
            background: linear-gradient(to bottom right, var(--sakura2024-white), rgba(255, 183, 197, 0.1));
        }
        
        .sakura2024-highlight-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: var(--sakura2024-secondary-color);
            border-radius: 50%;
            margin-bottom: 20px;
            transition: var(--sakura2024-transition);
        }
        
        .sakura2024-highlight-item:hover .sakura2024-highlight-icon {
            background-color: var(--sakura2024-accent-color);
            transform: rotate(360deg);
        }
        
        .sakura2024-highlight-icon i {
            font-size: 1.5rem;
            color: var(--sakura2024-accent-color);
            transition: var(--sakura2024-transition);
        }
        
        .sakura2024-highlight-item:hover .sakura2024-highlight-icon i {
            color: var(--sakura2024-white);
        }
        
        .sakura2024-highlight-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--sakura2024-text-color);
            transition: var(--sakura2024-transition);
        }
        
        .sakura2024-highlight-item:hover .sakura2024-highlight-title {
            color: var(--sakura2024-accent-color);
        }
        
        .sakura2024-highlight-description {
            color: var(--sakura2024-light-text);
            margin-bottom: 20px;
            line-height: 1.6;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        
        .sakura2024-highlight-item:hover .sakura2024-highlight-description {
            max-height: 200px;
        }
        
        .sakura2024-highlight-details {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
            color: var(--sakura2024-light-text);
        }
        
        .sakura2024-highlight-item:hover .sakura2024-highlight-details {
            max-height: 300px;
            margin-top: 15px;
        }
        
        .sakura2024-highlight-details p {
            margin-bottom: 10px;
        }
        
        .sakura2024-highlight-details ul {
            padding-left: 20px;
            margin-top: 10px;
        }
        
        .sakura2024-highlight-details li {
            margin-bottom: 8px;
        }
        
        .sakura2024-highlight-link {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: var(--sakura2024-accent-color);
            font-weight: 600;
            text-decoration: none;
            transition: var(--sakura2024-transition);
            margin-top: 15px;
            opacity: 0;
            transform: translateY(10px);
        }
        
        .sakura2024-highlight-item:hover .sakura2024-highlight-link {
            opacity: 1;
            transform: translateY(0);
        }
        
        .sakura2024-highlight-link:hover {
            gap: 10px;
        }
        
        /* Itinerary Section */
        .sakura2024-itinerary-section {
            background-color: var(--sakura2024-light-bg);
        }
        
        .sakura2024-timeline {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .sakura2024-timeline::after {
            content: "";
            position: absolute;
            width: 4px;
            background-color: var(--sakura2024-secondary-color);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .sakura2024-timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.5s ease;
        }
        
        .sakura2024-timeline-item.sakura2024-show {
            opacity: 1;
            transform: translateY(0);
        }
        
        .sakura2024-timeline-item::after {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: var(--sakura2024-white);
            border: 4px solid var(--sakura2024-accent-color);
            top: 20px;
            border-radius: 50%;
            z-index: 1;
            transition: var(--sakura2024-transition);
        }
        
        .sakura2024-timeline-item:hover::after {
            background-color: var(--sakura2024-accent-color);
            transform: scale(1.2);
        }
        
        .sakura2024-timeline-left {
            left: 0;
        }
        
        .sakura2024-timeline-right {
            left: 50%;
        }
        
        .sakura2024-timeline-left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid var(--sakura2024-secondary-color);
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent var(--sakura2024-secondary-color);
        }
        
        .sakura2024-timeline-right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid var(--sakura2024-secondary-color);
            border-width: 10px 10px 10px 0;
            border-color: transparent var(--sakura2024-secondary-color) transparent transparent;
        }
        
        .sakura2024-timeline-right::after {
            left: -10px;
        }
        
        .sakura2024-timeline-content {
            padding: 20px 30px;
            background-color: var(--sakura2024-white);
            position: relative;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--sakura2024-transition);
        }
        
        .sakura2024-timeline-content:hover {
            box-shadow: 0 15px 30px rgba(255, 105, 180, 0.25);
            transform: translateY(-5px);
            background: linear-gradient(to bottom right, var(--sakura2024-white), var(--sakura2024-secondary-color));
        }
        
        .sakura2024-timeline-day {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--sakura2024-accent-color);
        }
        
        .sakura2024-timeline-location {
            font-size: 1.1rem;
            margin-bottom: 15px;
            color: var(--sakura2024-text-color);
        }
        
        .sakura2024-timeline-description {
            color: var(--sakura2024-light-text);
            margin-bottom: 15px;
        }
        
        .sakura2024-timeline-list {
            padding-left: 20px;
            color: var(--sakura2024-light-text);
        }
        
        .sakura2024-timeline-list li {
            margin-bottom: 8px;
            transition: var(--sakura2024-transition);
        }
        
        .sakura2024-timeline-content:hover .sakura2024-timeline-list li {
            transform: translateX(5px);
        }
        
        /* Simple Footer */
        .sakura2024-footer {
            background-color: var(--sakura2024-dark-bg);
            color: var(--sakura2024-white);
            padding: 40px 0 20px;
            text-align: center;
        }
        
        .sakura2024-footer-content {
            margin-bottom: 20px;
        }
        
        .sakura2024-footer-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--sakura2024-primary-color);
        }
        
        .sakura2024-footer-text {
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.7);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .sakura2024-social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .sakura2024-social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--sakura2024-white);
            border-radius: 50%;
            transition: var(--sakura2024-transition);
        }
        
        .sakura2024-social-links a:hover {
            background-color: var(--sakura2024-accent-color);
            transform: translateY(-5px);
        }
        
        .sakura2024-footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Animations */
        @keyframes sakura2024-fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes sakura2024-fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        /* Highlight Animation */
        @keyframes sakura2024-highlight {
            0% {
                background-color: transparent;
            }
            50% {
                background-color: rgba(255, 105, 180, 0.1);
            }
            100% {
                background-color: transparent;
            }
        }
        
        .sakura2024-highlight-animation {
            animation: sakura2024-highlight 2s ease-in-out;
        }
        
        /* Responsive Design */
        @media screen and (max-width: 992px) {
            .sakura2024-overview-content {
                grid-template-columns: 1fr;
            }
            
            .sakura2024-timeline::after {
                left: 31px;
            }
            
            .sakura2024-timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .sakura2024-timeline-item::before {
                left: 60px;
                border: medium solid var(--sakura2024-secondary-color);
                border-width: 10px 10px 10px 0;
                border-color: transparent var(--sakura2024-secondary-color) transparent transparent;
            }
            
            .sakura2024-timeline-left::after, .sakura2024-timeline-right::after {
                left: 21px;
            }
            
            .sakura2024-timeline-left {
                left: 0%;
            }
            
            .sakura2024-timeline-right {
                left: 0%;
            }
        }
        
        @media screen and (max-width: 768px) {
            .sakura2024-section-heading {
                font-size: 2.5rem;
            }
            
            .sakura2024-features-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media screen and (max-width: 576px) {
            .sakura2024-section {
                padding: 50px 0;
            }
            
            .sakura2024-section-heading {
                font-size: 2rem;
            }
        }