 :root {
            --primary-color: #0c3649;
            --secondary-color: #77a36b;
            --accent-color: #f8a31b;
            --light-bg: #f8f9fa;
            --dark-text: #2d3a3a;
            --light-text: #6c757d;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark-text);
            background-color: #f9f9f9;
        }
        
        .packages-preview {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
            position: relative;
            overflow: hidden;
        }
        
        .section-header {
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1rem;
            color: var(--light-text);
            max-width: 700px;
            margin: 20px auto 0;
            line-height: 1.6;
        }
        
        .package-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 40px;
        }
        
        .package-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .package-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .package-image {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        
        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .package-card:hover .package-image img {
            transform: scale(1.1);
        }
        
        .package-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent-color);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
        }
        
        .package-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .package-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 8px;
        }
        
        .package-type {
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 0.9rem;
            display: block;
        }
        
        .package-features {
            margin-bottom: 15px;
            flex-grow: 1;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .feature-icon {
            width: 20px;
            height: 20px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            flex-shrink: 0;
        }
        
        .feature-icon i {
            font-size: 0.7rem;
            color: var(--secondary-color);
        }
        
        .feature-text {
            color: var(--light-text);
            font-size: 0.85rem;
        }
        
        .package-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }
        
        .price-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .price-duration {
            font-size: 0.8rem;
            color: var(--light-text);
        }
        
        .see-more-btn {
            display: inline-block;
            background: var(--secondary-color);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 20px auto 0;
            text-align: center;
            border: 2px solid var(--secondary-color);
        }
        
        .see-more-btn:hover {
            background: transparent;
            color: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(119, 163, 107, 0.3);
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Animation for section entrance */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-in {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .packages-preview {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .package-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .package-price {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .see-more-btn {
                width: 100%;
                max-width: 250px;
            }
        }

        .packages-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0c3649;
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #77a36b;
            border-radius: 2px;
        }

        .section-subtitle {
            max-width: 700px;
            margin: 20px auto 0;
            color: #6c757d;
        }

        .package-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
            transition: .4s;
            position: relative;
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
        }

        .package-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #f8a31b;
            color: #fff;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: .8rem;
            font-weight: 600;
            z-index: 2;
        }

        .package-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s;
        }

        .package-card:hover .package-image img {
            transform: scale(1.1);
        }

        .package-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(transparent, rgba(12, 54, 73, 0.8));
        }

        .package-content {
            padding: 25px;
        }

        .package-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #0c3649;
        }

        .package-type {
            color: #77a36b;
            font-weight: 600;
            display: block;
            margin-bottom: 15px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            background: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }

        .feature-icon i {
            font-size: .8rem;
            color: #77a36b;
        }

        .package-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .price-amount {
            font-size: 1.8rem;
            font-weight: 700;
            color: #0c3649;
        }

        .price-duration {
            font-size: .9rem;
            color: #6c757d;
        }

        .package-btn {
            background: #25d366;
            color: #fff;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: .3s;
        }

        .package-btn:hover {
            background: #0c3649;
            color: #fff;
        }

        .note-box {
            background: #fff;
            border-radius: 10px;
            padding: 25px;
            margin-top: 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
            border-left: 4px solid #f8a31b;
        }

        .note-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0c3649;
        }