.package-container {
            margin: 20px 0;
            padding: 0 10px;
            position: relative;
        }
        
        .package-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .package-header h2 {
            color: var(--purple);
            font-weight: bold;
            margin: 0;
            font-size: 24px;
        }
        
        .view-all-btn {
            background-color: var(--pink);
            color: white;
            border: none;
            padding: 6px 16px;
            border-radius: 4px;
            font-weight: bold;
            text-decoration: none;
            font-size: 14px;
        }
        
        .package-card {
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 15px;
            height: 100%;
            display: flex;
            flex-direction: column;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            background-color: white;
        }
        
        .package-title {
            background-color: #00baf7;
            color: white;
            padding: 10px 15px;
            font-size: 14px;
            font-weight: bold;
            text-align: center;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .package-details {
            padding: 15px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .package-info {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }
        
        .package-info .circle-icon {
            background-color:#00baf7;
            color: white;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            margin-right: 8px;
            margin-top: 3px;
        }
        
        .package-divider {
            height: 1px;
            background-color: #eee;
            margin: 5px 0;
            width: 100%;
        }
        
        .package-price {
            margin-top: 10px;
            text-align: left;
        }
        
        .original-price {
            text-decoration: line-through;
            color: #777;
            font-size: 14px;
        }
        
        .discount-price {
            font-weight: bold;
            font-size: 18px;
            color: var(--purple);
        }
        
        .discount-badge {
            color: #028c4c;
            font-size: 14px;
            font-weight: bold;
            margin-left: 10px;
        }
        
        .preparation-info {
            font-size: 14px;
        }
        
        .preparation-label {
            color: var(--purple);
            font-weight: bold;
        }
        
        .slider-wrapper {
            position: relative;
            padding: 0 40px;
        }
        
        #packageSlider {
            display: flex;
            overflow-x: hidden;
            position: relative;
            scroll-behavior: smooth;
            padding-bottom: 10px;
        }
        
        .package-item {
            flex: 0 0 auto;
            width: 280px;
            padding: 0 8px;
            box-sizing: border-box;
            transition: transform 0.3s ease;
        }
        
        .slider-controls button {
            background-color: var(--purple);
            color: white;
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }
        
        .slider-controls button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }
        
        #prevBtn {
            left: 0;
        }
        
        #nextBtn {
            right: 0;
        }
        
        
        
        /* Additional Styling */
        .intro-section {
            /*background-color: #f8f9fa;*/
            /*padding: 60px 0;*/
            /*margin-bottom: 30px;*/
        }
        
        .intro-content {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .intro-image {
            flex: 0 0 45%;
            /*border-radius: 10px;*/
            /*overflow: hidden;*/
            /*box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
        }
        
        .intro-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .intro-text {
            flex: 1;
        }
        
        .intro-text h1 {
            color: #5e2c84;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .intro-text p {
            font-size: 16px;
            line-height: 1.6;
            color: #555;
            margin-bottom: 20px;
        }
        
        .benefits-section {
            padding: 50px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            color: #5e2c84;
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background-color: #5e2c84;
        }
        
        .benefit-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-bottom: 3px solid #5e2c84;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .benefit-icon {
            width: 70px;
            height: 70px;
            background-color: #f0e6f5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .benefit-icon i {
            font-size: 30px;
            color: #5e2c84;
        }
        
        .benefit-title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
        }
        
        .benefit-text {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }
        
        .how-it-works {
            background-color: #f8f9fa;
            padding: 60px 0;
        }
        
        .step-box {
            text-align: center;
            padding: 20px;
            position: relative;
        }
        
        .step-number {
            width: 40px;
            height: 40px;
            background-color: #5e2c84;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 0 auto 15px;
        }
        
        .step-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: #333;
        }
        
        .step-description {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .step-arrow {
            position: absolute;
            top: 40px;
            right: -15px;
            color: #ccc;
            font-size: 24px;
            z-index: 1;
        }
        
        .cta-section {
            padding: 50px 0;
            background-color: #5e2c84;
            color: white;
            text-align: center;
        }
        
        .cta-content h3 {
            font-size: 28px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .cta-content p {
            font-size: 16px;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            background-color: white;
            
            padding: 12px 30px;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .cta-button:hover {
            background-color: #f0f0f0;
            transform: translateY(-2px);
        }
        
        .faq-section {
            padding: 60px 0;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
        }
        
        .accordion-button {
            background-color: #f8f9fa;
            color: #333;
            font-weight: 600;
            padding: 15px 20px;
            border-radius: 5px !important;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: #5e2c84;
            color: white;
        }
        
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: #5e2c84;
        }
        
        .accordion-body {
            padding: 15px 20px;
            background-color: #f8f9fa;
            border-top: none;
            color: #666;
        }
        
        /* Already included package slider styles */
        .package-container {
            padding: 50px 20px;
            background-color: white;
        }
        

        /* Responsive styles */
        @media (max-width: 992px) {
            .intro-content {
                flex-direction: column;
            }
            
            .intro-image {
                flex: 0 0 100%;
                margin-bottom: 30px;
            }
            
            .step-arrow {
                display: none;
            }
        }
        
        .package-header h2 {
            color: #5e2c84;
            font-weight: 700;
        }
        
        /* Left Sidebar - Integrated from previous code */
        #hicare-left-sidebar {
            position: fixed;
            width: 100px;
            height: 100vh;
            left: 0;
            top: 0;
            background-color: white;
            box-shadow: 2px 0 5px rgba(0,0,0,0.2);
            z-index: 9999;
            text-align: center;
            padding-top: 100px;
            display: block !important;
            visibility: visible !important;
        }

        .hicare-sidebar-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 5px;
            color: #5e2c84;
            text-decoration: none;
            font-size: 12px;
            font-weight: 600;
            margin: 10px 0;
            transition: background-color 0.3s;
        }

        .hicare-sidebar-item:hover {
            background-color: #f5f0f8;
        }

        .hicare-sidebar-icon {
            margin-bottom: 8px;
            color: #5e2c84;
            font-size: 24px;
        }

        /* Adjust main content to make space for sidebar */
        body {
            margin-left: 100px !important;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            #hicare-left-sidebar {
                width: 80px;
                padding-top: 80px;
            }
            
            .hicare-sidebar-item {
                font-size: 10px;
                padding: 15px 2px;
            }
            
            body {
                margin-left: 80px !important;
            }
        }
        
        /* Hide sidebar on very small screens */
        @media (max-width: 480px) {
            #hicare-left-sidebar {
                display: none !important;
            }
            
            body {
                margin-left: 0 !important;
            }
        }
   