        :root {
            --primary-color: #d6d82d;
            --secondary-color: #f2c469;
            --accent-color: #ccdc66;
            --dark-color: #f7f3cf;
            --light-color: #F0FAFB;
            --success-color: #2BB673;
        }
        
        .btn-more {
            display: inline-block;
            margin-top: 60px;
            padding: 18px 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

                .btn-more:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(177, 198, 84, 0.4);
            color: white;
        }


        /* Make all package cards equal height */
.product-item {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Fix image height */
.product-item img {
    height: 230px;              /* same image height */
    object-fit: cover;          /* crop image nicely */
}

/* Make content area stretch evenly */
.product-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-content h4 {
    min-height: 48px;
}
